一、功能描述
- 在桌面应用程序中增加一个日志模块,利用Qt5自带的日志模块qInstallMessageHandler;
- 以当天日期作为文件名,并保存为markdown文本格式:日期.md;
- 文件输出目录为当前.exe的目录。
二、参考程序
2.1 参考程序
#include "mainwindow.h"
#include <QApplication>
#include <QDebug>
#include <QMutex>
#include <QFile>
#include <QTextStream>
#include <QDateTime>
void LogMessage(QtMsgType type, const QMessageLogContext &context, const QString &msg);
int main(int argc, char *argv[]){
QApplication a(argc, argv);
qInstallMessageHandler(LogMessage);
qDebug("This is a Debug message");
MainWindow w;
w.show();
return a.exec();
}
void LogMessage(QtMsgType type, const QMessageLogContext &context, const QString &msg){
static QMutex mutex;
mutex.lock();
QString text;
switch(type){
case QtDebugMsg: text = QString("Debug:"); break;
case QtWarningMsg: text = QString("Warning:"); break;
case QtCriticalMsg: text = QString("Critical:");break;
case QtFatalMsg: text = QString("Fatal:"); break;
default: break;
}
QString context_info = QString("File:(%1) Line:(%2)").arg(QString(context.file)).arg(context.line);
QString current_date_time = QDateTime::currentDateTime().toString("yyyy-MM-dd hh:mm:ss");
QString message = QString("%1 %2").arg(current_date_time).arg(msg);
QString timestr=QDateTime::currentDateTime().toString("yyyy.MM.dd");
QString fileName = timestr + ".md";
QFile file(fileName);
file.open(QIODevice::WriteOnly | QIODevice::Append);
QTextStream text_stream(&file);
text_stream << message << "\r\n\r\n";
file.flush();
file.close();
mutex.unlock();
}
2.2 一些说明
?? LogMessage() 是自定义消息处理函数,然后通过 qInstallMessageHandler() 函数注册该自定义的消息处理函数,此时QDebug的消息将会输出在日志文件。 ?? Qt中QString的arg方法参考这里:https://www.cnblogs.com/lomper/p/4135387.html
三、运行结果
图 3-1 日志所在目录
??运行上图中的QtLogDemo.exe后,会生成相应的日志文件,如2021.09.28.md。
图 3-2 日志内容
?? 日志2021.09.28.md中的打印信息既程序中的 qDebug(“This is a Debug message”) 的内容。
四、其他一些有关Qt-Log的使用文档
[1] Qt::Qt Log日志模块:https://blog.csdn.net/u011218356/article/details/103344231 [2] Qt实现记录日志文件log:https://blog.csdn.net/weixin_40355471/article/details/110527027 [3] QT log日志的使用:https://blog.csdn.net/bloke_come/article/details/76090845
|