mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-02 01:42:19 +00:00
Maybe this is some "just in case" thing that got copied around. There's no need to have a blank line at the beginning or end of Kconfig files. Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
10 lines
409 B
Plaintext
10 lines
409 B
Plaintext
config $(module)_LOG_MESSAGE_QUEUE_TIMEOUT
|
|
int "Log message drop timeout (in milliseconds)"
|
|
default $(default-timeout)
|
|
range -1 10000
|
|
help
|
|
If queue with pending log messages is full, oldest log message is
|
|
dropped if queue is still full after requested time (-1 is forever).
|
|
Logger thread is blocked for that period, thus long timeout impacts
|
|
other logger backends and must be used with care.
|