From b7ec7ec638451362d2cd2a58edc57a4ff5235fc5 Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Mon, 17 Jul 2023 20:04:02 +0000 Subject: [PATCH] debug: thread_analyzer: use printk by default When enabling thread analyzer, use printk by default. Otherwise logging subsystem is enabled which might not be desired. Fixes #59919 Signed-off-by: Anas Nashif --- subsys/debug/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/subsys/debug/Kconfig b/subsys/debug/Kconfig index a94b96d44ce..47b03f25325 100644 --- a/subsys/debug/Kconfig +++ b/subsys/debug/Kconfig @@ -26,6 +26,7 @@ source "subsys/logging/Kconfig.template.log_config" choice prompt "Thread analysis print mode" + default THREAD_ANALYZER_USE_PRINTK config THREAD_ANALYZER_USE_LOG bool "Use logger output"