From 34687356ad902e9e7ab484cc3f0bec2d74772e70 Mon Sep 17 00:00:00 2001 From: Kamil Kasperczyk <66371704+kkasperczyk-no@users.noreply.github.com> Date: Fri, 6 Jan 2023 20:35:49 +0100 Subject: [PATCH] [nrfconnect] Added LOG dependency for CHIP_APP_LOG_LEVEL (#24279) CHIP_APP_LOG_LEVEL tries to set default to LOG_DEFAULT_LEVEL, but if LOG is disabled for release build the assembler will fail to process it. Added LOG dependency to make sure that LOG_DEFAULT_LEVEL exists before using it. --- config/nrfconnect/chip-module/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/config/nrfconnect/chip-module/Kconfig b/config/nrfconnect/chip-module/Kconfig index b6700cbe7f3602..ad61ab9e848112 100644 --- a/config/nrfconnect/chip-module/Kconfig +++ b/config/nrfconnect/chip-module/Kconfig @@ -25,6 +25,7 @@ config CHIP_DEVICE_VENDOR_NAME config CHIP_APP_LOG_LEVEL int "Set logging level in application" default LOG_DEFAULT_LEVEL + depends on LOG help Sets the logging level in Matter application. This config should be used only within application.