:orphan: .. title:: LOG_PROCESS_THREAD_SLEEP_MS .. option:: CONFIG_LOG_PROCESS_THREAD_SLEEP_MS *Set internal log processing thread sleep period* Type: ``int`` Help ==== Log processing thread sleeps for requested period given in milliseconds. When waken up, thread process any buffered messages. Direct dependencies =================== \ :option:`LOG_PROCESS_THREAD ` && !\ :option:`LOG_IMMEDIATE ` && !\ :option:`LOG_MINIMAL ` && !\ :option:`LOG_FRONTEND ` && !\ :option:`LOG_MINIMAL ` && \ :option:`LOG ` *(Includes any dependencies from ifs and menus.)* Default ======= - 1000 Kconfig definition ================== .. highlight:: kconfig At ``subsys/logging/Kconfig.processing:68`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:31`` → ``subsys/logging/Kconfig:23`` Menu path: (Top) → Sub Systems and OS Services → Logging → Processing → Use internal thread for log processing .. parsed-literal:: config LOG_PROCESS_THREAD_SLEEP_MS int "Set internal log processing thread sleep period" default 1000 depends on \ :option:`LOG_PROCESS_THREAD ` && !\ :option:`LOG_IMMEDIATE ` && !\ :option:`LOG_MINIMAL ` && !\ :option:`LOG_FRONTEND ` && !\ :option:`LOG_MINIMAL ` && \ :option:`LOG ` help Log processing thread sleeps for requested period given in milliseconds. When waken up, thread process any buffered messages. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*