:orphan: .. title:: CONFIG_LOG_PROCESS_THREAD .. kconfig:: CONFIG_LOG_PROCESS_THREAD CONFIG_LOG_PROCESS_THREAD ######################### *Use internal thread for log processing* Type: ``bool`` Help ==== .. code-block:: none When enabled thread is created by the logger subsystem. Thread is waken up periodically (see LOG_PROCESS_THREAD_SLEEP_MS) and whenever number of buffered messages exceeds the threshold (see LOG_PROCESS_TRIGGER_THR). Direct dependencies =================== \ :kconfig:`MULTITHREADING ` && !\ :kconfig:`LOG_IMMEDIATE ` && !\ :kconfig:`LOG_MINIMAL ` && !\ :kconfig:`LOG_FRONTEND ` && !\ :kconfig:`LOG_MINIMAL ` && \ :kconfig:`LOG ` *(Includes any dependencies from ifs and menus.)* Default ======= - y Kconfig definition ================== At ``/logging/Kconfig.processing:58`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:31`` → ``/logging/Kconfig:21`` Menu path: (Top) → Sub Systems and OS Services → Logging → Processing .. code-block:: kconfig config LOG_PROCESS_THREAD bool "Use internal thread for log processing" default y depends on MULTITHREADING && !LOG_IMMEDIATE && !LOG_MINIMAL && !LOG_FRONTEND && !LOG_MINIMAL && LOG help When enabled thread is created by the logger subsystem. Thread is waken up periodically (see LOG_PROCESS_THREAD_SLEEP_MS) and whenever number of buffered messages exceeds the threshold (see LOG_PROCESS_TRIGGER_THR). *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*