The latest development version of this page may be more current than this released 2.5.0 version.
CONFIG_LOG_MODE_IMMEDIATE

Synchronous

Type: bool

Help

When enabled log is processed in the context of the call. It impacts performance of the system since time consuming operations are performed in the context of the log entry (e.g. high priority interrupt).Logger backends must support exclusive access to work flawlessly in that mode because one log operation can be interrupted by another one in the higher priority context.

Direct dependencies

<choice: Mode>

(Includes any dependencies from ifs and menus.)

Kconfig definition

At subsys/logging/Kconfig.mode:15

Included via Kconfig:8Kconfig.zephyr:34subsys/Kconfig:31subsys/logging/Kconfig:13

Menu path: (Top) → Sub Systems and OS Services → Logging → Mode

config LOG_MODE_IMMEDIATE
    bool "Synchronous"
    depends on <choice: Mode>
    help
      When enabled log is processed in the context of the call. It impacts
      performance of the system since time consuming operations are
      performed in the context of the log entry (e.g. high priority
      interrupt).Logger backends must support exclusive access to work
      flawlessly in that mode because one log operation can be interrupted
      by another one in the higher priority context.

(The ‘depends on’ condition includes propagated dependencies from ifs and menus.)