From 15fa3beb6def46d391c98457638b9dcd1a6fe9b9 Mon Sep 17 00:00:00 2001 From: Gabor Kiss-Vamosi Date: Thu, 26 Jul 2018 00:30:36 +0200 Subject: [PATCH] lv_conf_templ updated --- lv_conf_templ.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lv_conf_templ.h b/lv_conf_templ.h index 2914d8c76..c60a85441 100644 --- a/lv_conf_templ.h +++ b/lv_conf_templ.h @@ -91,17 +91,17 @@ /*Log settings*/ #define USE_LV_LOG 1 /*Enable/disable the log module*/ #if USE_LV_LOG +#if USE_LV_LOG /* How important log should be added: - * LV_LOG_LEVEL_DUBUG A lot of logs to trace every detail - * LV_LOG_LEVEL_TRACE Trace the most important calls - * LV_LOG_LEVEL_INFO Log important events - * LV_LOG_LEVEL_WARN Log is something unwanted happened but didn't caused problem - * LV_LOG_LEVEL_ERROR Only critical issue, when the system may fail + * LV_LOG_LEVEL_TRACE A lot of logs to give detailed information + * LV_LOG_LEVEL_INFO Log important events + * LV_LOG_LEVEL_WARN Log if something unwanted happened but didn't caused problem + * LV_LOG_LEVEL_ERROR Only critical issue, when the system may fail */ #define LV_LOG_LEVEL LV_LOG_LEVEL_INFO /* 1: Print the log with 'printf'; 0: user need to register a callback*/ -#define LV_LOG_PRINTF 1 +#define LV_LOG_PRINTF 0 #endif /*USE_LV_LOG*/ /*================