diff options
author | zheng_wenlong <wenlong_zheng@nexty-ele.com> | 2017-11-09 12:58:41 +0900 |
---|---|---|
committer | Zheng Wenlong <wenlong_zheng@nexty-ele.com> | 2017-11-10 00:15:03 +0000 |
commit | 321f08ed8d0a4d3b1f4bd486e8a4240f4d3443ee (patch) | |
tree | e5616e814a33de3c5a2728a04700ebf1e9f06e40 /src | |
parent | 599de8d3f35cb0fe56c7e27591862d61944b456b (diff) |
Set default debug level to errorflounder_5.99.2flounder_5.99.1flounder/5.99.2flounder/5.99.1eel_4.99.3eel/4.99.35.99.25.99.14.99.3
Default enable HMI_ERROR output.
Remove afb-binding.h and add necessary header files.
[Patch Set 2]
Change LOG_LEVEL_MAX value equal LOG_LEVEL_DEBUG.
Change-Id: Ie50e267b9ff9ad107bb38162ad90acc410c79cbc
Signed-off-by: zheng_wenlong <wenlong_zheng@nexty-ele.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/hmi-debug.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/hmi-debug.h b/src/hmi-debug.h index 3240171..2a744ba 100644 --- a/src/hmi-debug.h +++ b/src/hmi-debug.h @@ -19,8 +19,9 @@ #include <time.h> #include <stdio.h> +#include <stdarg.h> #include <string.h> -#include <afb/afb-binding.h> +#include <stdlib.h> enum LOG_LEVEL{ LOG_LEVEL_NONE = 0, @@ -29,7 +30,7 @@ enum LOG_LEVEL{ LOG_LEVEL_NOTICE, LOG_LEVEL_INFO, LOG_LEVEL_DEBUG, - LOG_LEVEL_MAX = LOG_LEVEL_ERROR + LOG_LEVEL_MAX = LOG_LEVEL_DEBUG }; #define __FILENAME__ (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__) @@ -44,7 +45,7 @@ static char ERROR_FLAG[6][20] = {"NONE", "ERROR", "WARNING", "NOTICE", "INFO", " static void _HMI_LOG(enum LOG_LEVEL level, const char* file, const char* func, const int line, const char* prefix, const char* log, ...) { - const int log_level = (getenv("USE_HMI_DEBUG") == NULL)?0:atoi(getenv("USE_HMI_DEBUG")); + const int log_level = (getenv("USE_HMI_DEBUG") == NULL)?LOG_LEVEL_ERROR:atoi(getenv("USE_HMI_DEBUG")); if(log_level < level) { return; |