diff options
Diffstat (limited to 'src/misc/lv_log.c')
-rw-r--r-- | src/misc/lv_log.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/misc/lv_log.c b/src/misc/lv_log.c index 46f78873d..3f3caec8d 100644 --- a/src/misc/lv_log.c +++ b/src/misc/lv_log.c @@ -69,9 +69,9 @@ void lv_log_register_print_cb(lv_log_print_g_cb_t print_cb) custom_print_cb = print_cb; } -void _lv_log_add(lv_log_level_t level, const char * file, int line, const char * func, const char * format, ...) +void lv_log_add(lv_log_level_t level, const char * file, int line, const char * func, const char * format, ...) { - if(level >= _LV_LOG_LEVEL_NUM) return; /*Invalid level*/ + if(level >= LV_LOG_LEVEL_NUM) return; /*Invalid level*/ if(level >= LV_LOG_LEVEL) { va_list args; |