force 24h time format

changed hh:mm to HH:mm
changed dd.MM.yyyy to yyyy-MM-dd to uniform all date format
This commit is contained in:
beta-tester
2018-05-11 11:00:08 +02:00
parent 251b93f97a
commit 1c952d3b0e
21 changed files with 39 additions and 39 deletions
+1 -1
View File
@@ -52,7 +52,7 @@ void FileLogger::refreshQtSettings()
maxSize = settings->value("maxSize", 0).toLongLong();
maxBackups = settings->value("maxBackups", 0).toInt();
msgFormat = settings->value("msgFormat", "{timestamp} {type} {msg}").toString();
timestampFormat = settings->value("timestampFormat", "yyyy-MM-dd hh:mm:ss.zzz").toString();
timestampFormat = settings->value("timestampFormat", "yyyy-MM-dd HH:mm:ss.zzz").toString();
minLevel = static_cast<QtMsgType>(settings->value("minLevel", 0).toInt());
bufferSize = settings->value("bufferSize", 0).toInt();