This commit is contained in:
朱子楚\zhuzi 2023-12-04 21:33:06 +08:00
parent b4f2f68135
commit 46148b3c5c

View File

@ -3,7 +3,6 @@
#include <QtCore/qfile.h> #include <QtCore/qfile.h>
#include <QtCore/qtextstream.h> #include <QtCore/qtextstream.h>
#include <iostream> #include <iostream>
#include <framelesshelpercore_global.h>
#ifndef QT_ENDL #ifndef QT_ENDL
# if (QT_VERSION >= QT_VERSION_CHECK(5, 14, 0)) # if (QT_VERSION >= QT_VERSION_CHECK(5, 14, 0))
@ -35,7 +34,7 @@ static inline void myMessageHandler(const QtMsgType type, const QMessageLogConte
} }
if (!g_logFile) { if (!g_logFile) {
g_logFile = std::make_unique<QFile>(); g_logFile = std::make_unique<QFile>();
g_logFile->setFileName(FRAMELESSHELPER_STRING_LITERAL("debug-%1.log").arg(g_app)); g_logFile->setFileName(QString("debug-%1.log").arg(g_app));
if (!g_logFile->open(QFile::WriteOnly | QFile::Text | QFile::Append)) { if (!g_logFile->open(QFile::WriteOnly | QFile::Text | QFile::Append)) {
std::cerr << "Can't open file to write: " << qUtf8Printable(g_logFile->errorString()) << std::endl; std::cerr << "Can't open file to write: " << qUtf8Printable(g_logFile->errorString()) << std::endl;
g_logFile.reset(); g_logFile.reset();
@ -62,7 +61,7 @@ void Log::setup(const QString &app)
} }
once = true; once = true;
g_app = app; g_app = app;
qSetMessagePattern(FRAMELESSHELPER_STRING_LITERAL( qSetMessagePattern(QString(
"[%{time yyyy/MM/dd hh:mm:ss.zzz}] <%{if-info}INFO%{endif}%{if-debug}DEBUG" "[%{time yyyy/MM/dd hh:mm:ss.zzz}] <%{if-info}INFO%{endif}%{if-debug}DEBUG"
"%{endif}%{if-warning}WARNING%{endif}%{if-critical}CRITICAL%{endif}%{if-fatal}" "%{endif}%{if-warning}WARNING%{endif}%{if-critical}CRITICAL%{endif}%{if-fatal}"
"FATAL%{endif}> %{if-category}%{category}: %{endif}%{message}")); "FATAL%{endif}> %{if-category}%{category}: %{endif}%{message}"));