From 6734e930fd9e56827e5c0cd13e6252dee0963d12 Mon Sep 17 00:00:00 2001 From: armink Date: Sat, 30 Mar 2019 09:26:56 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E4=BF=AE=E6=AD=A3=E3=80=91ELOG=5FOUTP?= =?UTF-8?q?UT=5FENABLE=20=E6=9C=AA=E5=AE=9A=E4=B9=89=E6=97=B6=E5=AD=98?= =?UTF-8?q?=E5=9C=A8=E7=9A=84=E7=BC=96=E8=AF=91=E9=94=99=E8=AF=AF=E3=80=82?= =?UTF-8?q?=E6=84=9F=E8=B0=A2=E7=BD=91=E5=8F=8B=20@mojinpan=20=E7=9A=84?= =?UTF-8?q?=E5=8F=8D=E9=A6=88=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: armink --- easylogger/inc/elog.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/easylogger/inc/elog.h b/easylogger/inc/elog.h index caa28f4..51dcffb 100644 --- a/easylogger/inc/elog.h +++ b/easylogger/inc/elog.h @@ -1,7 +1,7 @@ /* * This file is part of the EasyLogger Library. * - * Copyright (c) 2015-2018, Armink, + * Copyright (c) 2015-2019, Armink, * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the @@ -50,7 +50,7 @@ extern "C" { #define ELOG_LVL_TOTAL_NUM 6 /* EasyLogger software version number */ -#define ELOG_SW_VERSION "2.0.3" +#define ELOG_SW_VERSION "2.1.0" /* EasyLogger assert for developer. */ #ifdef ELOG_ASSERT_ENABLE @@ -69,12 +69,12 @@ extern "C" { #endif #ifndef ELOG_OUTPUT_ENABLE - #define elog_a(tag, ...) - #define elog_e(tag, ...) - #define elog_w(tag, ...) - #define elog_i(tag, ...) - #define elog_d(tag, ...) - #define elog_v(tag, ...) + #define elog_assert(tag, ...) + #define elog_error(tag, ...) + #define elog_warn(tag, ...) + #define elog_info(tag, ...) + #define elog_debug(tag, ...) + #define elog_verbose(tag, ...) #else /* ELOG_OUTPUT_ENABLE */ #if ELOG_OUTPUT_LVL >= ELOG_LVL_ASSERT #define elog_assert(tag, ...) \