From 0b29e12dc7a51c7c2cf3ea8cceffebd338497c83 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Thu, 23 Mar 2023 14:39:55 +1300 Subject: [PATCH] script/autobuild: Use --verbose to control python logger verbosity Signed-off-by: Andrew Bartlett Reviewed-by: Douglas Bagnall --- script/autobuild.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/script/autobuild.py b/script/autobuild.py index 2af5d6e676d..6c8b1128d32 100755 --- a/script/autobuild.py +++ b/script/autobuild.py @@ -109,6 +109,9 @@ if options.retry: if options.rebase is None: raise Exception('You can only use --retry if you also rebase') +if options.verbose: + logger.setLevel(logging.DEBUG) + if options.full_testbase is not None: testbase = options.full_testbase else: