CONFIG_SYS_LOG_CLOCK_CONTROL_LEVEL

Hardware clock controller drivers log level

Type: int

Help

Sets log level for clock controller drivers

Levels are:

  • 0 OFF, do not write
  • 1 ERROR, only write SYS_LOG_ERR
  • 2 WARNING, write SYS_LOG_WRN in addition to previous level
  • 3 INFO, write SYS_LOG_INF in addition to previous levels
  • 4 DEBUG, write SYS_LOG_DBG in addition to previous levels

Direct dependencies

SYS_LOG && CLOCK_CONTROL

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

Defaults

Kconfig definition

At drivers/clock_control/Kconfig:22

Included via Kconfig:10Kconfig.zephyr:29drivers/Kconfig:54

Menu path: (top menu) → Device Drivers → Hardware clock controller support

config SYS_LOG_CLOCK_CONTROL_LEVEL
    int
    prompt "Hardware clock controller drivers log level" if SYS_LOG && CLOCK_CONTROL
    default 0 if SYS_LOG && CLOCK_CONTROL
    depends on SYS_LOG && CLOCK_CONTROL
    help
      Sets log level for clock controller drivers

      Levels are:

      - 0 OFF, do not write

      - 1 ERROR, only write SYS_LOG_ERR

      - 2 WARNING, write SYS_LOG_WRN in addition to previous level

      - 3 INFO, write SYS_LOG_INF in addition to previous levels

      - 4 DEBUG, write SYS_LOG_DBG in addition to previous levels

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