diff --git a/es-core/src/Log.cpp b/es-core/src/Log.cpp index e66fb31ea..4807bd7ee 100644 --- a/es-core/src/Log.cpp +++ b/es-core/src/Log.cpp @@ -70,7 +70,7 @@ std::ostringstream& Log::get(LogLevel level) localtime_r(&t, &tm); #endif std::unique_lock lock {sLogMutex}; - mOutStringStream << std::put_time(&tm, "%b %d %T ") << mLogLevelMap[level] << ":\t"; + mOutStringStream << std::put_time(&tm, "%b %d %H:%M:%S ") << mLogLevelMap[level] << ":\t"; mMessageLevel = level; return mOutStringStream;