Kconfig.formatting 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. # Copyright (c) 2021 Nordic Semiconductor ASA
  2. # SPDX-License-Identifier: Apache-2.0
  3. menu "Output Formatting"
  4. menu "Prepend non-hexdump log message with function name"
  5. depends on !LOG_FRONTEND
  6. config LOG_FUNC_NAME_PREFIX_ERR
  7. bool "Error messages prepended"
  8. config LOG_FUNC_NAME_PREFIX_WRN
  9. bool "Warning messages prepended"
  10. config LOG_FUNC_NAME_PREFIX_INF
  11. bool "Info messages prepended"
  12. config LOG_FUNC_NAME_PREFIX_DBG
  13. bool "Debug messages prepended"
  14. default y
  15. endmenu
  16. config LOG_MIPI_SYST_ENABLE
  17. bool "Enable MIPI SyS-T format output"
  18. select MIPI_SYST_LIB
  19. help
  20. Enable MIPI SyS-T format output for the logger system.
  21. config LOG_DICTIONARY_SUPPORT
  22. bool
  23. depends on LOG2
  24. help
  25. Enable support for dictionary based logging.
  26. Dictionary based logging is binary based where predefined strings
  27. are replaced with their equivalent addresses from the built binary
  28. image file in log output. This reduces the size required to store
  29. the log output when there are long format strings to be logged.
  30. This should be selected by the backend automatically.
  31. config LOG_IMMEDIATE_CLEAN_OUTPUT
  32. bool "Clean log output"
  33. depends on LOG_IMMEDIATE
  34. help
  35. If enabled, interrupts are locked during whole log message processing.
  36. As a result, processing on one log message cannot be interrupted by
  37. another one and output is clean, not interleaved. However, enabling
  38. this option is causing interrupts locking for significant amount of
  39. time (up to multiple milliseconds).
  40. config LOG_BACKEND_SHOW_COLOR
  41. bool "Enable colors in the backend"
  42. depends on LOG_BACKEND_UART || LOG_BACKEND_NATIVE_POSIX || LOG_BACKEND_RTT \
  43. || LOG_BACKEND_SWO || LOG_BACKEND_XTENSA_SIM
  44. default y
  45. help
  46. When enabled selected backend prints errors in red and warning in yellow.
  47. config LOG_BACKEND_FORMAT_TIMESTAMP
  48. bool "Enable timestamp formatting in the backend"
  49. depends on LOG_BACKEND_UART || LOG_BACKEND_NATIVE_POSIX || LOG_BACKEND_RTT \
  50. || LOG_BACKEND_SWO || LOG_BACKEND_XTENSA_SIM || LOG_BACKEND_FS
  51. default y
  52. help
  53. When enabled timestamp is formatted to hh:mm:ss:ms,us.
  54. endmenu