From e645c08dd9ddfd7deec47de3bbd80c1f97610c0b Mon Sep 17 00:00:00 2001 From: Brian <48396880+Corgile@users.noreply.github.com> Date: Sun, 9 Jun 2024 17:29:20 +0800 Subject: [PATCH] Update easylog.hpp MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修复 MELOG_TRACE --- include/ylt/easylog.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/ylt/easylog.hpp b/include/ylt/easylog.hpp index adb3d39ac..68ec4f25f 100644 --- a/include/ylt/easylog.hpp +++ b/include/ylt/easylog.hpp @@ -288,7 +288,7 @@ inline void add_appender(std::function fn) { #endif #ifndef MELOG_TRACE -#define MELOG_TRACE(id) ELOG(INFO, id) +#define MELOG_TRACE(id) ELOG(TRACE, id) #endif #ifndef MELOG_DEBUG #define MELOG_DEBUG(id) ELOG(DEBUG, id) @@ -326,4 +326,4 @@ inline void add_appender(std::function fn) { #endif #ifndef ELOGF #define ELOGF ELOG_FATAL -#endif \ No newline at end of file +#endif