:orphan: .. title:: CONFIG_LOG_MODE_IMMEDIATE .. kconfig:: CONFIG_LOG_MODE_IMMEDIATE CONFIG_LOG_MODE_IMMEDIATE ######################### *Synchronous* Type: ``bool`` Help ==== .. code-block:: none 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.)* Symbols selected by this symbol =============================== - \ :kconfig:`MPSC_PBUF ` Kconfig definition ================== At ``/logging/Kconfig.mode:33`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:31`` → ``/logging/Kconfig:13`` Menu path: (Top) → Sub Systems and OS Services → Logging → Mode .. code-block:: kconfig config LOG_MODE_IMMEDIATE bool "Synchronous" select MPSC_PBUF depends on 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.)*