App:Library:LVGL:docs:Porting:Logging
提供: robot-jp wiki
ナビゲーションに移動検索に移動https://docs.lvgl.io/8.2/porting/log.html
| 英文 | 自動翻訳 |
|---|---|
Logging
LVGL has a built-in Log module to inform the user about what is happening in the library.
Log level
To enable logging, set LV_USE_LOG 1 in lv_conf.h and set LV_LOG_LEVEL to one of the following values:
LV_LOG_LEVEL_TRACEA lot of logs to give detailed informationLV_LOG_LEVEL_INFOLog important eventsLV_LOG_LEVEL_WARNLog if something unwanted happened but didn't cause a problemLV_LOG_LEVEL_ERROROnly critical issues, where the system may failLV_LOG_LEVEL_USEROnly user messagesLV_LOG_LEVEL_NONEDo not log anything
The events which have a higher level than the set log level will be logged too. E.g. if you LV_LOG_LEVEL_WARN, errors will be also logged.