Skip to content

Commit 50f36f0

Browse files
PerMackartben
authored andcommitted
twister: logging: decouple status reporting from logging level
Verbosity >1 should be enough to see filtered tests. Coupling it with debug logging level makes the output messy. Signed-off-by: Maciej Perkowski <maciej.perkowski@nordicsemi.no>
1 parent 7daa75f commit 50f36f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/pylib/twister/twisterlib/twister_main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def twister(options: argparse.Namespace, default_options: argparse.Namespace):
114114
if i.status == TwisterStatus.FILTER:
115115
if options.platform and not tplan.check_platform(i.platform, options.platform):
116116
continue
117-
logger.debug(
117+
logger.info(
118118
f"{i.platform.name:<25} {i.testsuite.name:<50}"
119119
f" {Fore.YELLOW}FILTERED{Fore.RESET}: {i.reason}"
120120
)

0 commit comments

Comments
 (0)