:orphan: .. title:: CONFIG_LOG_MODE_OVERFLOW .. kconfig:: CONFIG_LOG_MODE_OVERFLOW CONFIG_LOG_MODE_OVERFLOW ######################## *Drop oldest message when full* Type: ``bool`` Help ==== .. code-block:: none If enabled, then if there is no space to log a new message, the oldest one is dropped. If disabled, current message is dropped. Direct dependencies =================== !\ :kconfig:`LOG_IMMEDIATE ` && !\ :kconfig:`LOG_MINIMAL ` && !\ :kconfig:`LOG_FRONTEND ` && !\ :kconfig:`LOG_MINIMAL ` && \ :kconfig:`LOG ` *(Includes any dependencies from ifs and menus.)* Default ======= - y Kconfig definition ================== At ``/logging/Kconfig.processing:23`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:31`` → ``/logging/Kconfig:21`` Menu path: (Top) → Sub Systems and OS Services → Logging → Processing .. code-block:: kconfig config LOG_MODE_OVERFLOW bool "Drop oldest message when full" default y depends on !LOG_IMMEDIATE && !LOG_MINIMAL && !LOG_FRONTEND && !LOG_MINIMAL && LOG help If enabled, then if there is no space to log a new message, the oldest one is dropped. If disabled, current message is dropped. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*