:orphan: .. title:: CONFIG_LOG_PROCESS_TRIGGER_THRESHOLD .. kconfig:: CONFIG_LOG_PROCESS_TRIGGER_THRESHOLD CONFIG_LOG_PROCESS_TRIGGER_THRESHOLD #################################### *Number of buffered log messages before flushing* Type: ``int`` Help ==== .. code-block:: none When number of buffered messages reaches the threshold thread is waken up. Log processing thread ID is provided during log initialization. Set 0 to disable the feature. If LOG_PROCESS_THREAD is enabled then this threshold is used by the internal thread. 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 ======= - 10 Kconfig definition ================== At ``/logging/Kconfig.processing:48`` 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_TRIGGER_THRESHOLD int "Number of buffered log messages before flushing" default 10 depends on MULTITHREADING && !LOG_IMMEDIATE && !LOG_MINIMAL && !LOG_FRONTEND && !LOG_MINIMAL && LOG help When number of buffered messages reaches the threshold thread is waken up. Log processing thread ID is provided during log initialization. Set 0 to disable the feature. If LOG_PROCESS_THREAD is enabled then this threshold is used by the internal thread. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*