Qt中第三方日志库QsLog的基本配置和使用详解-创新互联
- 一、QsLog基本介绍
- 二、QsLog的使用方法
- 2.1 方法一——在Mingw编译器中的编译和使用
- 2.2 方法二——在Visual Studio编译器中的使用
- 三、项目基本配置
- 四、UI界面设计
- 五、主程序实现
- 5.1 widget.h
- 5.2 widget.cpp
- 六、效果演示
- 七、拓展
上一篇文章Qt第三方日志库QsLog基本语法介绍介绍了一下日志库QsLog的基本语法,本文将介绍一下QsLog的基本配置和使用。配合上文一起食用效果更佳哟~
成都创新互联主要从事成都做网站、成都网站设计、网页设计、企业做网站、公司建网站等业务。立足成都服务扎鲁特旗,十多年网站建设经验,价格优惠、服务专业,欢迎来电咨询建站服务:18982081108一、QsLog基本介绍qslog的下载地址:https://github.com/victronenergy/QsLog。
QsLog是一个基于Qt的QDebug类的易于使用的记录器。QsLog是在麻省理工学院许可下以开源形式发布的。
QsLog的特征:
- 六个日志级别(从跟踪到致命);
- 运行时可配置的日志级别阈值;
- 关闭日志记录时的最小开销;
- 支持多个目标,附带文件和调试目标;
- 线程安全
- 支持现成的常见Qt类型的日志记录;
- 小依赖:直接把它放到你的项目中。
打开QsLog.pri项目,进行编译:
编译完成后,在工程源码目录中,会出现build-QsLogShared文件夹。
进入该文件夹,将libQsLog2.a和QsLog2.dll复制出来,移动到新建项目的文件夹中。
同时将QsLog-master中的头文件也移出来,放入到新建项目相应的文件夹中。
内容如下:
其中bin目录下存放libQsLog2.a和QsLog2.dll。include目录下存放相应的.h头文件。
然后将dll文件放在exe所在目录下。
编译步骤相同,只是利用Visual Studio进行编译,生成的是QsLog2.dll和QsLog2.lib(而mingw编译器生成的是Qslog2.dll和QsLog2.a)。
三、项目基本配置新建一个Qt案例,项目名称为“qslogTest”,基类选择“QWidget”,取消选中创建UI界面复选框,完成项目创建。
在pro文件中添加相应的头文件和lib库文件:
INCLUDEPATH += include/QsLog.h \
include/QsLogDest.h \
include/QsLogDestConsole.h \
include/QsLogDestFile.h \
include/QsLogDestFunctor.h \
include/QsLogDisableForThisFile.h \
include/QsLogLevel.h
LIBS += $$PWD/QsLog/bin/libQsLog2.a
四、UI界面设计ui界面如下:
界面内为一个QTextBrowser。
头文件中声明两个函数和一个槽函数:
public:
void initLogger();
void destroyLogger();
public slots:
void logSlot(const QString &message, int level);
5.2 widget.cpp首先定义相应的头文件和使用命名空间:
#include"QsLog/include/QsLog.h"
#include"QsLog/include/QsLogDest.h"
using namespace QsLogging;
在构造函数中进行初始化,析构函数中进行销毁:
Widget::Widget(QWidget *parent)
: QWidget(parent)
, ui(new Ui::Widget)
{ui->setupUi(this);
initLogger(); //初始化日志
}
Widget::~Widget()
{delete ui;
destroyLogger();//销毁日志
}
初始化函数:
void Widget::initLogger()
{// 1. 启动日志记录机制
Logger& logger = Logger::instance();
logger.setLoggingLevel(QsLogging::TraceLevel);
//设置log位置为exe所在目录
const QString sLogPath(QDir(QCoreApplication::applicationDirPath()).filePath("log.txt"));
// 2. 添加两个destination
DestinationPtr fileDestination(DestinationFactory::MakeFileDestination(
sLogPath, EnableLogRotation, MaxSizeBytes(512), MaxOldLogCount(2)));
DestinationPtr debugDestination(DestinationFactory::MakeDebugOutputDestination());
//DestinationPtr functorDestination(DestinationFactory::MakeFunctorDestination(&logFunction));
//这样和槽函数连接
DestinationPtr sigsSlotDestination(DestinationFactory::MakeFunctorDestination(this, SLOT(logSlot(QString,int))));
logger.addDestination(debugDestination);
logger.addDestination(fileDestination);
//logger.addDestination(functorDestination);
logger.addDestination(sigsSlotDestination);
// 3. 开始日志记录
QLOG_INFO()<< "Program started";
QLOG_INFO()<< "Built with Qt"<< QT_VERSION_STR<< "running on"<< qVersion();
QLOG_TRACE()<< "Here's a"<< QString::fromUtf8("trace")<< "message";
QLOG_DEBUG()<< "Here's a"<< static_cast(QsLogging::DebugLevel)<< "message";
QLOG_WARN()<< "Uh-oh!";
qDebug()<< "This message won't be picked up by the logger";
QLOG_ERROR()<< "An error has occurred";
qWarning()<< "Neither will this one";
QLOG_FATAL()<< "Fatal error!";
}
析构函数:
//析构
void Widget::destroyLogger()
{QsLogging::Logger::destroyInstance();
}
槽函数:
//槽函数
void Widget::logSlot(const QString &message, int level)
{ui->textBrowser->append(qPrintable(message));
}
【注】:如果发现日志显示中文时会显示乱码,则只需将qPrintable修改为qUtf8Printable即可。
六、效果演示完整效果如下:
如果想设置颜色,比如说将FATAL设置为红色,可以修改代码如下:
void Widget::logSlot(const QString &message, int level)
{if(message.contains("FATAL")){const QString ss="";
ui->textBrowser->append(ss + qPrintable(message) + "");//显示红色的字体
}else{ui->textBrowser->append(qPrintable(message));
}
}
运行效果如下:
如果没有看懂的话,完整代码可以参考:
https://download.csdn.net/download/didi_ya/85019199
ok,以上便是本文的全部内容了,如果对你有所帮助,记得点个赞哟~
参考文章:
- https://blog.csdn.net/hp_cpp/article/details/83580525
你是否还在寻找稳定的海外服务器提供商?创新互联www.cdcxhl.cn海外机房具备T级流量清洗系统配攻击溯源,准确流量调度确保服务器高可用性,企业级服务器适合批量采购,新人活动首月15元起,快前往官网查看详情吧
标题名称:Qt中第三方日志库QsLog的基本配置和使用详解-创新互联
URL分享:http://scyanting.com/article/pdidd.html