1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-28 07:03:00 +08:00

Merge pull request #1068 from amirgon/dev-6.0

Add missing 'log level' argument to log callback
This commit is contained in:
Gabor Kiss-Vamosi 2019-05-19 10:37:47 +02:00 committed by GitHub
commit 0be212c26c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,9 +40,9 @@ typedef int8_t lv_log_level_t;
**********************/
/**
* Log print function. Receives "File path", "Line number" and "Description".
* Log print function. Receives "Log Level", "File path", "Line number" and "Description".
*/
typedef void (*lv_log_print_g_cb_t) (const char *, uint32_t, const char *);
typedef void (*lv_log_print_g_cb_t) (lv_log_level_t level, const char *, uint32_t, const char *);
/**********************
* GLOBAL PROTOTYPES