:orphan: .. title:: LOG_DEFAULT_LEVEL .. option:: CONFIG_LOG_DEFAULT_LEVEL *Default log level* Type: ``int`` Help ==== Sets log level for modules which don't specify it explicitly. When set to 0 it means log will not be activated for those modules. Levels are: - 0 OFF, do not write by default - 1 ERROR, default to only write LOG_LEVEL_ERR - 2 WARNING, default to write LOG_LEVEL_WRN - 3 INFO, default to write LOG_LEVEL_INFO - 4 DEBUG, default to write LOG_LEVEL_DBG Direct dependencies =================== \ :option:`LOG ` *(Includes any dependencies from ifs and menus.)* Default ======= - 3 Kconfig definition ================== .. highlight:: kconfig At ``subsys/logging/Kconfig.filtering:13`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:31`` → ``subsys/logging/Kconfig:15`` Menu path: (Top) → Sub Systems and OS Services → Logging → Logging levels filtering .. parsed-literal:: config LOG_DEFAULT_LEVEL int "Default log level" range 0 4 default 3 depends on \ :option:`LOG ` help Sets log level for modules which don't specify it explicitly. When set to 0 it means log will not be activated for those modules. Levels are: - 0 OFF, do not write by default - 1 ERROR, default to only write LOG_LEVEL_ERR - 2 WARNING, default to write LOG_LEVEL_WRN - 3 INFO, default to write LOG_LEVEL_INFO - 4 DEBUG, default to write LOG_LEVEL_DBG *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*