From c4725e8a1491e6cd6cb81dc0ab351a5e46df14c2 Mon Sep 17 00:00:00 2001 From: agroce Date: Mon, 17 Jun 2019 10:34:40 -0700 Subject: [PATCH] fix log level control in tests --- tests/logrun.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/logrun.py b/tests/logrun.py index cd5926f..553983e 100644 --- a/tests/logrun.py +++ b/tests/logrun.py @@ -10,7 +10,7 @@ def logrun(cmd, file, timeout): sys.stderr.flush() with open(file, 'w') as outf: # We need to set log_level so we see ALL messages, for testing - p = subprocess.Popen(cmd + ["--log_level", "0"], stdout=outf, stderr=outf) + p = subprocess.Popen(cmd + ["--min_log_level", "0"], stdout=outf, stderr=outf) start = time.time() oldContents = "" lastOutput = time.time()