欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Qt 定制qDebug() 信息到log文件

程序员文章站 2022-03-02 10:29:24
...

Qt中有qInstallMsgHandler 方法可以去定制消息发生后的回调函数,它回调同时还有qDebug的级别信息。这样我们可以方便把错误消息定制到自己的log文件里面

如下:

#include <QtDebug>
#include <QFile>
#include <QTextStream>
 //回调函数实现debug信息到文件
void customMessageHandler(QtMsgType type, const char *msg)
{
	QString txt;
	switch (type) {
	case QtDebugMsg:
		txt = QString("Debug: %1").arg(msg);
		break;
 
	case QtWarningMsg:
		txt = QString("Warning: %1").arg(msg);
	break;
	case QtCriticalMsg:
		txt = QString("Critical: %1").arg(msg);
	break;
	case QtFatalMsg:
		txt = QString("Fatal: %1").arg(msg);
		abort();
	}
 
	QFile outFile("debug.log");
	outFile.open(QIODevice::WriteOnly | QIODevice::Append);
	QTextStream ts(&outFile);
	ts << txt << endl;
}
 
int main( int argc, char * argv[] )
{
	QApplication app( argc, argv );
 
	//这个方法注册回调函数       
	qInstallMsgHandler(customMessageHandler);	
	...
	return app.exec();
}

 

相关标签: Qt