From 2bce009d9904b4c466bc0831ccf21a4db323d392 Mon Sep 17 00:00:00 2001 From: Patrick Donnelly Date: Wed, 6 Jan 2021 11:36:49 -0800 Subject: [PATCH] qa: add debug vstart_runner option The default was changed to INFO recently but there was no way to restore visibility of DEBUG messages. Signed-off-by: Patrick Donnelly --- qa/tasks/vstart_runner.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qa/tasks/vstart_runner.py b/qa/tasks/vstart_runner.py index 2cd0e776b0e..81fd5928376 100644 --- a/qa/tasks/vstart_runner.py +++ b/qa/tasks/vstart_runner.py @@ -1565,6 +1565,8 @@ def exec_test(): opt_rotate_logs = True elif f == '--run-all-tests': opt_exit_on_test_failure = False + elif f == '--debug': + log.setLevel(logging.DEBUG) else: log.error("Unknown option '{0}'".format(f)) sys.exit(-1) -- 2.39.5