Merge pull request #627 from smithjd15/logTimestamp

Timestamp'ed log entries
This commit is contained in:
Tomas Jakobsson 2020-03-19 15:36:37 +01:00 committed by GitHub
commit ef33eaec51
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,6 +3,7 @@
#include "utils/FileSystemUtil.h"
#include "platform.h"
#include <iostream>
#include <iomanip>
LogLevel Log::reportingLevel = LogInfo;
FILE* Log::file = NULL; //fopen(getLogPath().c_str(), "w");
@ -38,7 +39,8 @@ void Log::open()
std::ostringstream& Log::get(LogLevel level)
{
os << "lvl" << level << ": \t";
time_t t = time(nullptr);
os << std::put_time(localtime(&t), "%b %d %T ") << "lvl" << level << ": \t";
messageLevel = level;
return os;