We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 166705f commit ffb6284Copy full SHA for ffb6284
code/Common/Logger.cpp
@@ -263,8 +263,8 @@ String Logger::getDateTime() {
263
<< std::setw(Space) << currentDateTime.month << "."
264
<< std::setw(Space * 2) << currentDateTime.day << " "
265
<< std::setw(Space) << currentDateTime.hour << ":"
266
- << std::setw(Space) << currentDateTime.min << ":"
267
- << std::setw(Space) << currentDateTime.sec;
+ << std::setw(Space) << currentDateTime.minute << ":"
+ << std::setw(Space) << currentDateTime.second;
268
const std::string tmp(stream.str());
269
String dateTime(tmp.c_str(), tmp.size());
270
return dateTime;
0 commit comments