Kconfig.template.shell_log_queue_timeout 448 B

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