From 6890a9a434c83fa6d7971426dbb843c233e0f9cd Mon Sep 17 00:00:00 2001 From: Krzysztof Chruscinski Date: Thu, 1 Sep 2022 10:07:30 +0200 Subject: [PATCH] shell: Fix dependency to log_output When shell was used as a log backend it did not enabled log_output module used for string formatting. Adding missing dependency. Original commit (b0072e1cea07b326aab18ed358555173b82d8e81) was reverted, reappling. Signed-off-by: Krzysztof Chruscinski --- subsys/shell/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/subsys/shell/Kconfig b/subsys/shell/Kconfig index 78c90228ae..ae3fbf41cf 100644 --- a/subsys/shell/Kconfig +++ b/subsys/shell/Kconfig @@ -228,6 +228,7 @@ config SHELL_LOG_BACKEND bool "Shell log backend" depends on LOG && !LOG_MODE_MINIMAL select MPSC_PBUF + select LOG_OUTPUT default y if LOG help When enabled, backend will use the shell for logging.