shell: Add missing dependency to shell log backend
Shell log backend depends on logging being enabled. Lack of this dependency leads to compilation failure when logging is disabled. Signed-off-by: Krzysztof Chruscinski <krzysztof.chruscinski@nordicsemi.no>
This commit is contained in:
parent
45a6de6804
commit
f8e7ecfb56
1 changed files with 1 additions and 1 deletions
|
@ -197,7 +197,7 @@ config SHELL_CMDS_SELECT
|
||||||
|
|
||||||
config SHELL_LOG_BACKEND
|
config SHELL_LOG_BACKEND
|
||||||
bool "Enable shell log backend"
|
bool "Enable shell log backend"
|
||||||
depends on !LOG_MINIMAL
|
depends on LOG && !LOG_MINIMAL
|
||||||
default y if LOG
|
default y if LOG
|
||||||
help
|
help
|
||||||
When enabled, backend will use the shell for logging.
|
When enabled, backend will use the shell for logging.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue