:orphan: .. title:: LOG_PROCESS_THREAD .. option:: CONFIG_LOG_PROCESS_THREAD *Use internal thread for log processing* Type: ``bool`` 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). Direct dependencies =================== \ :option:`MULTITHREADING ` && !\ :option:`LOG_IMMEDIATE ` && !\ :option:`LOG_MINIMAL ` && !\ :option:`LOG_FRONTEND ` && !\ :option:`LOG_MINIMAL ` && \ :option:`LOG ` *(Includes any dependencies from ifs and menus.)* Default ======= - y Kconfig definition ================== .. highlight:: kconfig At ``subsys/logging/Kconfig.processing:56`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:31`` → ``subsys/logging/Kconfig:23`` Menu path: (Top) → Sub Systems and OS Services → Logging → Processing .. parsed-literal:: config LOG_PROCESS_THREAD bool "Use internal thread for log processing" default y depends on \ :option:`MULTITHREADING ` && !\ :option:`LOG_IMMEDIATE ` && !\ :option:`LOG_MINIMAL ` && !\ :option:`LOG_FRONTEND ` && !\ :option:`LOG_MINIMAL ` && \ :option:`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.)*