:orphan: .. title:: CONFIG_LOG_BLOCK_IN_THREAD .. kconfig:: CONFIG_LOG_BLOCK_IN_THREAD CONFIG_LOG_BLOCK_IN_THREAD ########################## *Block in thread context on full* Type: ``bool`` Help ==== .. code-block:: none When enabled logger will block (if in the thread context) when internal logger buffer is full and new message cannot be allocated. 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.)* Defaults ======== No defaults. Implicitly defaults to ``n``. Kconfig definition ================== At ``/logging/Kconfig.processing:30`` 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_BLOCK_IN_THREAD bool "Block in thread context on full" depends on MULTITHREADING && !LOG_IMMEDIATE && !LOG_MINIMAL && !LOG_FRONTEND && !LOG_MINIMAL && LOG help When enabled logger will block (if in the thread context) when internal logger buffer is full and new message cannot be allocated. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*