From cc345582ad481d23b1b6cdf6df7cde414227fa49 Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Tue, 26 Jan 2021 09:46:55 -0800 Subject: [PATCH] test-runner: don't always print "verbose on for ..." This shouldn't have been a dbg print, but rather a normal print which will only be printed when '-d' is used. --- tools/test-runner | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/test-runner b/tools/test-runner index fba589e3..c0fc85ed 100755 --- a/tools/test-runner +++ b/tools/test-runner @@ -180,7 +180,7 @@ class Process: set_stdout = False if ctx.is_verbose(args[0]): - dbg("Verbose on for %s" % args[0]) + print("Verbose on for %s" % args[0]) set_stdout = True if os.path.basename(args[0]) == ctx.args.gdb: