The latest development version of this page may be more current than this released 1.14.1 version.
CONFIG_LOG_I2C_SLAVE_LEVEL

I2C Slave log level

Type: int

Help

Sets log level for I2C drivers. Levels are: - 0 OFF, do not write - 1 ERROR, only write LOG_ERR - 2 WARNING, write LOG_WRN in addition to previous level - 3 INFO, write LOG_INF in addition to previous levels - 4 DEBUG, write LOG_DBG in addition to previous levels

Direct dependencies

LOG && I2C_SLAVE && I2C

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

Defaults

Kconfig definition

At drivers/i2c/slave/Kconfig:25

Included via Kconfig:10Kconfig.zephyr:35drivers/Kconfig:38drivers/i2c/Kconfig:23

Menu path: (top menu) → Device Drivers → I2C Drivers → I2C Slave Drivers

config LOG_I2C_SLAVE_LEVEL
    int
    prompt "I2C Slave log level" if LOG && I2C_SLAVE && I2C
    default 0 if LOG && I2C_SLAVE && I2C
    depends on LOG && I2C_SLAVE && I2C
    help
      Sets log level for I2C drivers.
      Levels are:
      - 0 OFF, do not write
      - 1 ERROR, only write LOG_ERR
      - 2 WARNING, write LOG_WRN in addition to previous level
      - 3 INFO, write LOG_INF in addition to previous levels
      - 4 DEBUG, write LOG_DBG in addition to previous levels

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