The latest development version of this page may be more current than this released 1.14.0 version.
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

LOG

(Includes any dependencies from if’s and menus.)

Defaults

Kconfig definition

At subsys/logging/Kconfig:21

Included via Kconfig:10Kconfig.zephyr:39subsys/Kconfig:20

Menu path: (top menu) → Logging

config LOG_DEFAULT_LEVEL
    int
    prompt "Default log level" if LOG
    range 0 4 if LOG
    default 3 if LOG
    depends on 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

(Definitions include propagated dependencies, including from if’s and menus.)