CONFIG_SYS_LOG_LED_STRIP_LEVEL

LED strip system log level

Type: int

Help

Sets the log level for LED strip drivers. You must have system logging enabled. 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 && LED_STRIP

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

Defaults

Kconfig definition

At drivers/led_strip/Kconfig:17

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

Menu path: (top menu) → Device Drivers → LED strip drivers

config SYS_LOG_LED_STRIP_LEVEL
    int
    prompt "LED strip system log level" if SYS_LOG && LED_STRIP
    range 0 4 if SYS_LOG && LED_STRIP
    default 0 if SYS_LOG && LED_STRIP
    depends on SYS_LOG && LED_STRIP
    help
      Sets the log level for LED strip drivers. You must have
      system logging enabled.
      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.)