:orphan: .. title:: LED_LOG_LEVEL .. option:: CONFIG_LED_LOG_LEVEL *(No prompt -- not directly user assignable.)* Type: ``int`` Direct dependencies =================== \ :option:`LOG ` && \ :option:`LED ` *(Includes any dependencies from if's and menus.)* Defaults ======== - 0 if \ :option:`LED_LOG_LEVEL_OFF ` && \ :option:`LOG ` && \ :option:`LED ` - 1 if \ :option:`LED_LOG_LEVEL_ERR ` && \ :option:`LOG ` && \ :option:`LED ` - 2 if \ :option:`LED_LOG_LEVEL_WRN ` && \ :option:`LOG ` && \ :option:`LED ` - 3 if \ :option:`LED_LOG_LEVEL_INF ` && \ :option:`LOG ` && \ :option:`LED ` - 4 if \ :option:`LED_LOG_LEVEL_DBG ` && \ :option:`LOG ` && \ :option:`LED ` Kconfig definition ================== .. highlight:: kconfig At ``subsys/logging/Kconfig.template.log_config:25`` Included via ``Kconfig:10`` → ``Kconfig.zephyr:35`` → ``drivers/Kconfig:80`` → ``drivers/led/Kconfig:18`` Menu path: (top menu) → Device Drivers → LED drivers .. parsed-literal:: config LED_LOG_LEVEL int default 0 if \ :option:`LED_LOG_LEVEL_OFF ` && \ :option:`LOG ` && \ :option:`LED ` default 1 if \ :option:`LED_LOG_LEVEL_ERR ` && \ :option:`LOG ` && \ :option:`LED ` default 2 if \ :option:`LED_LOG_LEVEL_WRN ` && \ :option:`LOG ` && \ :option:`LED ` default 3 if \ :option:`LED_LOG_LEVEL_INF ` && \ :option:`LOG ` && \ :option:`LED ` default 4 if \ :option:`LED_LOG_LEVEL_DBG ` && \ :option:`LOG ` && \ :option:`LED ` depends on \ :option:`LOG ` && \ :option:`LED ` *(Definitions include propagated dependencies, including from if's and menus.)*