:orphan: .. title:: CONFIG_LOG_IMMEDIATE_CLEAN_OUTPUT .. kconfig:: CONFIG_LOG_IMMEDIATE_CLEAN_OUTPUT CONFIG_LOG_IMMEDIATE_CLEAN_OUTPUT ################################# *Clean log output* Type: ``bool`` Help ==== .. code-block:: none If enabled, interrupts are locked during whole log message processing. As a result, processing on one log message cannot be interrupted by another one and output is clean, not interleaved. However, enabling this option is causing interrupts locking for significant amount of time (up to multiple milliseconds). Direct dependencies =================== \ :kconfig:`LOG_IMMEDIATE ` && !\ :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.formatting:43`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:31`` → ``/logging/Kconfig:19`` Menu path: (Top) → Sub Systems and OS Services → Logging → Output Formatting .. code-block:: kconfig config LOG_IMMEDIATE_CLEAN_OUTPUT bool "Clean log output" depends on LOG_IMMEDIATE && !LOG_FRONTEND && !LOG_MINIMAL && LOG help If enabled, interrupts are locked during whole log message processing. As a result, processing on one log message cannot be interrupted by another one and output is clean, not interleaved. However, enabling this option is causing interrupts locking for significant amount of time (up to multiple milliseconds). *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*