From: Patrick Donnelly Date: Wed, 6 Jan 2021 19:36:49 +0000 (-0800) Subject: qa: add debug vstart_runner option X-Git-Tag: v16.1.0~118^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F38794%2Fhead;p=ceph.git 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 --- diff --git a/qa/tasks/vstart_runner.py b/qa/tasks/vstart_runner.py index 2cd0e776b0ef..81fd59283769 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)