void customMessageHandler(QtMsgType type, const QMessageLogContext &context, const QString &msg) { Q_UNUSED(context); QString dt = QDateTime::currentDateTime().toString("dd/MM/yyyy hh:mm:ss"); QString txt = QString("[%1] ").arg(dt); switch (type) { case QtDebugMsg: txt += QString("{Debug} \t\t %1").arg(msg); break; case QtWarningMsg: txt += QString("{Warning} \t %1").arg(msg); break; case QtCriticalMsg: txt += QString("{Critical} \t %1").arg(msg); break; case QtFatalMsg: txt += QString("{Fatal} \t\t %1").arg(msg); abort(); break; } QFile outFile("LogFile.log"); outFile.open(QIODevice::WriteOnly | QIODevice::Append); QTextStream textStream(&outFile); textStream << txt << endl; }
Then, in main function we have to add the following line:
qInstallMessageHandler(customMessageHandler);标签:case,log,break,QString,arg,msg,txt,qt From: https://www.cnblogs.com/fire909090/p/18005019