logging: Revamp menuconfig
Clean up logging menuconfig by grouping configuration into sections like: mode, processing configuration, backends. Additionlly, removed LOG_ENABLE_FANCY_OUTPUT_FORMATTING which is no longer in use. Signed-off-by: Krzysztof Chruscinski <krzysztof.chruscinski@nordicsemi.no>
This commit is contained in:
parent
27a43808a2
commit
7f08061f0c
43 changed files with 639 additions and 592 deletions
19
subsys/logging/Kconfig.misc
Normal file
19
subsys/logging/Kconfig.misc
Normal file
|
@ -0,0 +1,19 @@
|
|||
# Copyright (c) 2021 Nordic Semiconductor ASA
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
menu "Misc"
|
||||
|
||||
config LOG_DOMAIN_ID
|
||||
int "Domain ID"
|
||||
default 0
|
||||
range 0 7
|
||||
help
|
||||
In multicore system each application/core must have unique domain ID.
|
||||
|
||||
config LOG_CMDS
|
||||
bool "Enable shell commands"
|
||||
depends on SHELL
|
||||
depends on !LOG_FRONTEND
|
||||
default y if SHELL
|
||||
|
||||
endmenu
|
Loading…
Add table
Add a link
Reference in a new issue