第一次接触QT记录日志的方法。
废话不多说,直接上代码:
void outputMessage(QtMsgType type, const QMessageLogContext &context, const QString &msg)
{
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:");
}
QString context_info = QString("File:(%1) Line:(%2)").arg(QString::fromLocal8Bit(context.file)).arg(context.line);
QString current_date_time = QDateTime::currentDateTime().toString("yyyy-MM-dd hh:mm:ss ddd");
QString current_date = QString("(%1)").arg(current_date_time);
QString message = QString("%1 %2 %3 %4").arg(current_date).arg(text).arg(context_info).arg(msg);
QString LogPath = QCoreApplication::applicationDirPath();
LogPath.append("/log");
QDir dir(LogPath);
if (!dir.exists(LogPath))
{
dir.mkdir(LogPath);
}
QString logFile = LogPath + "/" + QDateTime::currentDateTime().toString("yyyy-MM-dd");
logFile.append(".txt");
QFile file(logFile);
file.open(QIODevice::WriteOnly | QIODevice::Append);
QTextStream text_stream(&file);
text_stream << message << "\r\n";
file.flush();
file.close();
}
注意:需要注册回调函数
qInstallMessageHandler(outputMessage);
以上方法适用于不太复杂 的场景。
C++日志使用工具有log4cplus、log4cxx,Log4Qt等,这些我还没接触过,先学了QT这种方法,以后接触了别的在补充。
|