1# SPDX-License-Identifier: Apache-2.0
2
3config $(module)_LOG_MESSAGE_QUEUE_SIZE
4	int "Log message queue size"
5	default $(default-size)
6	help
7	  Size of buffer for messages that can be enqueued in order to be processed
8	  by shell thread. Too small queue may lead to the logger thread being blocked
9	  (see $(module)_LOG_MESSAGE_QUEUE_TIMEOUT). Too big queue on relatively
10	  slow shell transport may lead to situations where logs are dropped
11	  because all log messages are enqueued.
12