29 lines
557 B
Plaintext
29 lines
557 B
Plaintext
|
choice
|
||
|
prompt "Max compiled-in log level for $(module-str)"
|
||
|
default $(module)_LOG_LEVEL_INF
|
||
|
|
||
|
config $(module)_LOG_LEVEL_OFF
|
||
|
bool "Off"
|
||
|
|
||
|
config $(module)_LOG_LEVEL_ERR
|
||
|
bool "Error"
|
||
|
|
||
|
config $(module)_LOG_LEVEL_WRN
|
||
|
bool "Warning"
|
||
|
|
||
|
config $(module)_LOG_LEVEL_INF
|
||
|
bool "Info"
|
||
|
|
||
|
config $(module)_LOG_LEVEL_DBG
|
||
|
bool "Debug"
|
||
|
|
||
|
endchoice
|
||
|
|
||
|
config $(module)_LOG_LEVEL
|
||
|
int
|
||
|
default 0 if $(module)_LOG_LEVEL_OFF
|
||
|
default 1 if $(module)_LOG_LEVEL_ERR
|
||
|
default 2 if $(module)_LOG_LEVEL_WRN
|
||
|
default 3 if $(module)_LOG_LEVEL_INF
|
||
|
default 4 if $(module)_LOG_LEVEL_DBG
|