:orphan: .. title:: CONFIG_LOG_OVERRIDE_LEVEL .. kconfig:: CONFIG_LOG_OVERRIDE_LEVEL CONFIG_LOG_OVERRIDE_LEVEL ######################### *Override lowest log level* Type: ``int`` Help ==== .. code-block:: none Forces a minimum log level for all modules. Modules use their specified level if it is greater than this option, otherwise they use the level specified by this option instead of their default or whatever was manually set. Levels are: - 0 OFF, do not override - 1 ERROR, override to write LOG_LEVEL_ERR - 2 WARNING, override to write LOG_LEVEL_WRN - 3 INFO, override to write LOG_LEVEL_INFO - 4 DEBUG, override to write LOG_LEVEL_DBG Direct dependencies =================== \ :kconfig:`LOG ` *(Includes any dependencies from ifs and menus.)* Default ======= - 0 Kconfig definition ================== At ``/logging/Kconfig.filtering:28`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:31`` → ``/logging/Kconfig:15`` Menu path: (Top) → Sub Systems and OS Services → Logging → Logging levels filtering .. code-block:: kconfig config LOG_OVERRIDE_LEVEL int "Override lowest log level" range 0 4 default 0 depends on LOG help Forces a minimum log level for all modules. Modules use their specified level if it is greater than this option, otherwise they use the level specified by this option instead of their default or whatever was manually set. Levels are: - 0 OFF, do not override - 1 ERROR, override to write LOG_LEVEL_ERR - 2 WARNING, override to write LOG_LEVEL_WRN - 3 INFO, override to write LOG_LEVEL_INFO - 4 DEBUG, override to write LOG_LEVEL_DBG *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*