#include <QtDebug>
#include <QFile>
#include <QTextStream>
#include <QCoreApplication>
static 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();
default:
break;
}
QFile outFile("log.txt");
outFile.open(QIODevice::WriteOnly | QIODevice::Append);
QTextStream ts(&outFile);
ts << txt << endl;
}
int main(int argc,char* argv[])
{
QCoreApplication app(argc,argv);
qInstallMsgHandler(customMessageHandler);
qDebug("This is a debug message");
qWarning("This is a warning message");
return app.exec();
}