summaryrefslogtreecommitdiff
path: root/lib/common/Logging.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/common/Logging.cpp')
-rw-r--r--lib/common/Logging.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/common/Logging.cpp b/lib/common/Logging.cpp
index 9248bd35..1f872d93 100644
--- a/lib/common/Logging.cpp
+++ b/lib/common/Logging.cpp
@@ -288,7 +288,7 @@ bool Console::Log(Log::Level level, const std::string& rFile,
if (sShowTime)
{
- buf << FormatTime(GetCurrentBoxTime(), sShowTimeMicros);
+ buf << FormatTime(GetCurrentBoxTime(), false, sShowTimeMicros);
buf << " ";
}
@@ -449,7 +449,7 @@ bool FileLogger::Log(Log::Level Level, const std::string& rFile,
Logging::Remove(this);
std::ostringstream buf;
- buf << FormatTime(GetCurrentBoxTime(), false);
+ buf << FormatTime(GetCurrentBoxTime(), true, false);
buf << " ";
if (Level <= Log::FATAL)