Qt-将QDebug信息保存到文件中
程序员文章站
2022-03-31 11:14:01
...
Qt的qdebug可以很方便的输出LOG信息,但是有时我们需要将LOG信息保存到本地,方便后期的查看,例如,我们使用Qt开好的软件,然后打包发布后,此时就需要将有用的LOG信息保存到本地,如果软件使用过程中出现什么问题,我们就可以基于已经保存好的LOG信息,定位软件那个地方出现了Bug。
话不多说,直接上Code。有Code有真相。
#include <QDir>
#include <QTextStream>
#include "iostream"
#include <QDateTime>
#include "QDebug"
using namespace std;
void setDebugOutput(const QString &rawTargetFilePath_, const bool &argDateFlag_)
{
static QString rawTargetFilePath;
static bool argDateFlag;
rawTargetFilePath = rawTargetFilePath_;
argDateFlag = argDateFlag_;
class HelperClass
{
public:
static void messageHandler(QtMsgType type, const QMessageLogContext &, const QString &message_)
{
QString message;
switch ( type )
{
case QtDebugMsg:
{
message = message_;
break;
}
case QtWarningMsg:
{
message.append("Warning: ");
message.append(message_);
break;
}
case QtCriticalMsg:
{
message.append("Critical: ");
message.append(message_);
break;
}
case QtFatalMsg:
{
message.append("Fatal: ");
message.append(message_);
break;
}
default: { break; }
}
QString currentTargetFilePath;
currentTargetFilePath = rawTargetFilePath;
if ( !QFileInfo::exists( currentTargetFilePath ) )
{
QDir().mkpath( QFileInfo( currentTargetFilePath ).path() );
}
QFile file( currentTargetFilePath );
file.open( QIODevice::WriteOnly | QIODevice::Append );
QTextStream textStream( &file );
textStream << QDateTime::currentDateTime().toString( "yyyy-MM-dd hh:mm:ss:zzz" ) << ": " << message << endl;
}
};
qInstallMessageHandler( HelperClass::messageHandler );
}
setDebugOutput(const QString &rawTargetFilePath_, const bool &argDateFlag_)参数如下:
- rawTargetFilePath_为LOG的保存路径。
- argDateFlag_ 设置为false即可。
上一篇: 排序之冒泡排序
下一篇: Qt利用qDebug输出信息到文件
推荐阅读