:orphan: .. title:: LOG_MODE_IMMEDIATE .. option:: 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 =================== \ :ref:` ` *(Includes any dependencies from ifs and menus.)* Kconfig definition ================== .. highlight:: kconfig At ``subsys/logging/Kconfig.mode:15`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:31`` → ``subsys/logging/Kconfig:13`` Menu path: (Top) → Sub Systems and OS Services → Logging → Mode .. parsed-literal:: config LOG_MODE_IMMEDIATE bool "Synchronous" depends on \ :ref:` ` 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.)*