From d96dbadd7587b8ca67ae59f825f725a55d46279a Mon Sep 17 00:00:00 2001 From: Ulf Magnusson Date: Fri, 25 May 2018 16:07:48 +0200 Subject: [PATCH] tests: adc_simple: Change ADC_DEBUG=y to SYS_LOG_ADC_LEVEL=4 The ADC_DEBUG Kconfig symbol was removed in commit a679f3292061 ("sys_log: replace old debug macros at ADC driver"), which introduced SYS_LOG_ADC_LEVEL and switched to using SYS_LOG_DBG() for debug messages. Remove the ADC_DEBUG=y assignment and set SYS_LOG_ADC_LEVEL=4 so that the debug messages still show up. Signed-off-by: Ulf Magnusson --- tests/drivers/adc/adc_simple/prj.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/drivers/adc/adc_simple/prj.conf b/tests/drivers/adc/adc_simple/prj.conf index 415c30440ff..44074b400a9 100644 --- a/tests/drivers/adc/adc_simple/prj.conf +++ b/tests/drivers/adc/adc_simple/prj.conf @@ -1,3 +1,3 @@ CONFIG_ZTEST=y CONFIG_ADC=y -CONFIG_ADC_DEBUG=y +CONFIG_SYS_LOG_ADC_LEVEL=4