1# SPDX-License-Identifier: Apache-2.0
2
3config $(module)_LOG_MESSAGE_QUEUE_TIMEOUT
4	int "Log message drop timeout (in milliseconds)"
5	default $(default-timeout)
6	range -1 10000
7	help
8	  If queue with pending log messages is full, oldest log message is
9	  dropped if queue is still full after requested time (-1 is forever).
10	  Logger thread is blocked for that period, thus long timeout impacts
11	  other logger  backends and must be used with care.
12