From 17af032279a2ef387c459b3ae8501615750d1ce1 Mon Sep 17 00:00:00 2001 From: Shawn Chain Date: Fri, 9 Nov 2018 18:10:05 +0800 Subject: [PATCH] Fix log issue --- Common/Logger.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Common/Logger.cpp b/Common/Logger.cpp index c64685b..9931f33 100644 --- a/Common/Logger.cpp +++ b/Common/Logger.cpp @@ -18,7 +18,7 @@ #include "Logger.h" -#if defined(LOG_LOCALTIME) && LOG_LOCAL_TIME == 1 +#if defined(LOG_LOCALTIME) && LOG_LOCALTIME == 1 static const bool utc = false; #else static const bool utc = true;