:orphan: .. title:: CONFIG_LOG2_MODE_IMMEDIATE .. kconfig:: CONFIG_LOG2_MODE_IMMEDIATE CONFIG_LOG2_MODE_IMMEDIATE ########################## *Synchronous v2* 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:`LOG2 ` - \ :kconfig:`MPSC_PBUF ` Kconfig definition ================== At ``/logging/Kconfig.mode:21`` 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 LOG2_MODE_IMMEDIATE bool "Synchronous v2" select LOG2 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.)*