Kconfig.template.log_config 657 B

1234567891011121314151617181920212223242526272829303132
  1. # SPDX-License-Identifier: Apache-2.0
  2. choice "$(module)_LOG_LEVEL_CHOICE"
  3. prompt "Max compiled-in log level for $(module-str)"
  4. default $(module)_LOG_LEVEL_INF
  5. depends on LOG
  6. config $(module)_LOG_LEVEL_OFF
  7. bool "Off"
  8. config $(module)_LOG_LEVEL_ERR
  9. bool "Error"
  10. config $(module)_LOG_LEVEL_WRN
  11. bool "Warning"
  12. config $(module)_LOG_LEVEL_INF
  13. bool "Info"
  14. config $(module)_LOG_LEVEL_DBG
  15. bool "Debug"
  16. endchoice
  17. config $(module)_LOG_LEVEL
  18. int
  19. depends on LOG
  20. default 0 if $(module)_LOG_LEVEL_OFF
  21. default 1 if $(module)_LOG_LEVEL_ERR
  22. default 2 if $(module)_LOG_LEVEL_WRN
  23. default 3 if $(module)_LOG_LEVEL_INF
  24. default 4 if $(module)_LOG_LEVEL_DBG