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>
This commit is contained in:
parent
7daa75f634
commit
50f36f0002
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ def twister(options: argparse.Namespace, default_options: argparse.Namespace):
|
||||||
if i.status == TwisterStatus.FILTER:
|
if i.status == TwisterStatus.FILTER:
|
||||||
if options.platform and not tplan.check_platform(i.platform, options.platform):
|
if options.platform and not tplan.check_platform(i.platform, options.platform):
|
||||||
continue
|
continue
|
||||||
logger.debug(
|
logger.info(
|
||||||
f"{i.platform.name:<25} {i.testsuite.name:<50}"
|
f"{i.platform.name:<25} {i.testsuite.name:<50}"
|
||||||
f" {Fore.YELLOW}FILTERED{Fore.RESET}: {i.reason}"
|
f" {Fore.YELLOW}FILTERED{Fore.RESET}: {i.reason}"
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue