qt 打印日志

在 Qt Creator 中,将 QDebug、QInfo、QWarning、QCritical 和 QFatal 打印的日志输出到指定文件,需要设置 Qt 的消息处理机制。这通常涉及到安装一个自定义的消息处理器,该处理器将日志消息重定向到文件。以下是一个基本的步骤指南:

创建一个自定义消息处理器类

首先,需要创建一个继承自 QtMessageHandler 的类。这个类将重写 QtMessageHandler 的 message 函数,以便将日志消息写入文件。

CustomMessageHandler.h

// CustomMessageHandler.h  
#ifndef CUSTOMMESSAGEHANDLER_H  
#define CUSTOMMESSAGEHANDLER_H  
  
#include <QtCore>  
  
class CustomMessageHandler  
{  
public:  
    static void customMessageOutput(QtMsgType type, const QMessageLogContext &context, const QString &msg);  
};  
  
#endif // CUSTOMMESSAGEHANDLER_H

然后,在 .cpp 文件中,将包含这个头文件,并实现静态函数 customMessageOutput

// CustomMessageHandler.cpp  
#include "CustomMessageHandler.h"  
#include <QFile>  
#include <QTextStream>  
#include <QDateTime>  
  
void CustomMessageHandler::customMessageOutput(QtMsgType type, const QMessageLogContext &context, const QString &msg)  
{  
    // 打开文件,确保文件存在并具有写入权限  
    QFile file("path/to/your/logfile.txt");  
    if (!file.open(QIODevice::Append | QIODevice::Text)) {  
        return;  
    }  
  
    // 根据消息类型添加前缀  
    QString text;  
    switch (type) {  
    case QtDebugMsg:  
        text = QString("Debug: %1").arg(msg);  
        break;  
    case QtInfoMsg:  
        text = QString("Info: %1").arg(msg);  
        break;  
    case QtWarningMsg:  
        text = QString("Warning: %1").arg(msg);  
        break;  
    case QtCriticalMsg:  
        text = QString("Critical: %1").arg(msg);  
        break;  
    case QtFatalMsg:  
        text = QString("Fatal: %1").arg(msg);  
        // 注意:QtFatalMsg 会导致应用程序终止,因此这里可能无法写入完整的消息  
        break;  
    default:  
        text = msg;  
        break;  
    }  
  
    // 写入文件并关闭  
    QTextStream out(&file);  
    out << QDateTime::currentDateTime().toString("yyyy-MM-dd HH:mm:ss.zzz ") << text << endl;  
    file.close();  
}

最后,在main.cpp 文件中,需要在 main 函数开始处安装这个自定义消息处理器:

#include <QCoreApplication>  
#include "CustomMessageHandler.h"  
  
int main(int argc, char *argv[])  
{  
    QCoreApplication a(argc, argv);  
  
    // 安装自定义消息处理器  
    qInstallMessageHandler(CustomMessageHandler::customMessageOutput);  
   // 安装自定义消息处理器
    qInstallMessageHandler(CustomMessageHandler::customMessageOutput);
    qInfo() << "Application started";//输出一般性信息,用于记录应用程序运行过程中的常规信息,帮助开发者了解程序执行流程。
    qDebug() << "Variable value ";//主要用于调试目的,输出详细的调试信息。
    qWarning() << "Invalid input detected, using default value";//输出警告信息,表示程序运行过程中出现了潜在的问题,但并没有阻止程序继续执行
    qCritical() << "Critical failure in network connection";//输出严重错误信息,强调程序发生了严重的、可能会导致程序异常或严重影响程序功能的情况,但程序仍然能够运行并可能有机会尝试恢复。
  // qFatal("Unrecoverable system error occurred");//输出致命错误信息,表示发生了非常严重、无法恢复的错误,通常这类错误会导致程序立即终止
    // ... 你的应用程序代码 ...  
  
    return a.exec();  
}

结果查看:

相关推荐
ac-er8888几秒前
PHP网络爬虫常见的反爬策略
开发语言·爬虫·php
爱吃喵的鲤鱼10 分钟前
linux进程的状态之环境变量
linux·运维·服务器·开发语言·c++
DARLING Zero two♡36 分钟前
关于我、重生到500年前凭借C语言改变世界科技vlog.16——万字详解指针概念及技巧
c语言·开发语言·科技
7年老菜鸡37 分钟前
策略模式(C++)三分钟读懂
c++·qt·策略模式
Gu Gu Study38 分钟前
【用Java学习数据结构系列】泛型上界与通配符上界
java·开发语言
芊寻(嵌入式)1 小时前
C转C++学习笔记--基础知识摘录总结
开发语言·c++·笔记·学习
一颗松鼠1 小时前
JavaScript 闭包是什么?简单到看完就理解!
开发语言·前端·javascript·ecmascript
有梦想的咸鱼_1 小时前
go实现并发安全hashtable 拉链法
开发语言·golang·哈希算法
海阔天空_20131 小时前
Python pyautogui库:自动化操作的强大工具
运维·开发语言·python·青少年编程·自动化
天下皆白_唯我独黑1 小时前
php 使用qrcode制作二维码图片
开发语言·php