1# Copyright (c) 2016 Intel Corporation
2# SPDX-License-Identifier: Apache-2.0
3
4menuconfig LOG
5	bool "Logging"
6	select PRINTK if USERSPACE
7	help
8	  Global switch for the logger, when turned off log calls will not be
9	  compiled in.
10
11if LOG
12
13config LOG_CORE_INIT_PRIORITY
14	int "Log Core Initialization Priority"
15	range 0 99
16	default 0
17
18rsource "Kconfig.mode"
19
20rsource "Kconfig.filtering"
21
22if !LOG_FRONTEND && !LOG_MINIMAL
23
24rsource "Kconfig.formatting"
25
26rsource "Kconfig.processing"
27
28rsource "Kconfig.backends"
29
30endif # !LOG_FRONTEND && !LOG_MINIMAL
31
32rsource "Kconfig.misc"
33
34endif # LOG
35