From fbd3d4b90727edd74d58854bd15e716ec222d174 Mon Sep 17 00:00:00 2001 From: Ulf Magnusson Date: Tue, 14 Jan 2020 12:59:31 +0100 Subject: [PATCH] tests: counter: kconfig: Fix debug log level enabling COUNTER_LOG_LEVEL (defined in subsys/logging/Kconfig.template.log_config) is derived automatically and has no prompt. Assignments have no effect on promptless symbols. Set COUNTER_LOG_LEVEL_DBG=y instead, which corresponds to COUNTER_LOG_LEVEL=4. Flagged by https://github.com/zephyrproject-rtos/zephyr/pull/20742. Signed-off-by: Ulf Magnusson --- tests/drivers/counter/counter_basic_api/prj.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/drivers/counter/counter_basic_api/prj.conf b/tests/drivers/counter/counter_basic_api/prj.conf index db3f9d6ea68..f3051dd7427 100644 --- a/tests/drivers/counter/counter_basic_api/prj.conf +++ b/tests/drivers/counter/counter_basic_api/prj.conf @@ -2,4 +2,4 @@ CONFIG_COUNTER=y CONFIG_BT=n CONFIG_ZTEST=y CONFIG_LOG=y -CONFIG_COUNTER_LOG_LEVEL=4 +CONFIG_COUNTER_LOG_LEVEL_DBG=y