From e8ffa244e537566e25f726b19cfb706ad7fbe8e2 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Mon, 17 Apr 2023 13:15:00 +0300 Subject: [PATCH] Better handling of verbosity in debug mode --- platformio/debug/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platformio/debug/helpers.py b/platformio/debug/helpers.py index 23f4fff0..8982c00f 100644 --- a/platformio/debug/helpers.py +++ b/platformio/debug/helpers.py @@ -90,7 +90,7 @@ def predebug_project( TestSuite(env_name, debug_testname), project_config, TestRunnerOptions( - verbose=verbose, + verbose=3 if verbose else 0, without_building=False, without_debugging=False, without_uploading=not preload,