CONFIG_LOG_IMMEDIATE_CLEAN_OUTPUT¶
Clean log output
Type: bool
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).
Direct dependencies¶
LOG_IMMEDIATE && !LOG_FRONTEND && !LOG_MINIMAL && LOG
(Includes any dependencies from ifs and menus.)
Defaults¶
No defaults. Implicitly defaults to n.
Kconfig definition¶
At <Zephyr Subsystem>/logging/Kconfig.formatting:43
Included via Kconfig:8 → Kconfig.zephyr:44 → <Zephyr Subsystem>/Kconfig:31 → <Zephyr Subsystem>/logging/Kconfig:19
Menu path: (Top) → Sub Systems and OS Services → Logging → Output Formatting
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.)