❝对往期推送一文《定制Qt的调试输出》的补充说明。 ❞
补充一
由于qSetMessagePattern
设置的输出格式默认只会在debug模式下生效,在release模式下就失效了,比如release模式下文件名字和行号都为无效。我们要想在release模式下生效,只需要在项目文件添加DEFINES = QT_MESSAGELOGCONTEXT
后重新编译即可。
补充二
可以通过设置环境变量QT_MESSAGE_pattern
也可以达到自定义输出格式的效果,如下列代码:
qputenv("QT_MESSAGE_pattern", "%{appname} %{type} %{time [yyyy-MM-dd hh:mm:ss]} %{file} %{line} %{function} %{message}");
等效于:
代码语言:javascript复制qSetMessagePattern("%{appname} %{type} %{time [yyyy-MM-dd hh:mm:ss]} %{file} %{line} %{function} %{message}");
需要注意的是,如果同时设置QT_MESSAGE_pattern
环境变量和qSetMessagePattern
,则设置QT_MESSAGE_pattern
的环境变量优先。
简短例子
代码语言:javascript复制#include <QCoreApplication>
#include <QDebug>
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
qSetMessagePattern("%{appname} %{type} %{time [yyyy-MM-dd hh:mm:ss]} %{file} %{line} %{function} %{message}");
qInfo() << "Hello world";
qDebug() << "Hello world";
qWarning() << "Hello world";
return a.exec();
}
输出:
代码语言:javascript复制TestApp info [2020-04-13 23:07:32] ..TestAppmain.cpp 8 main Hello world
TestApp debug [2020-04-13 23:07:32] ..TestAppmain.cpp 9 main Hello world
TestApp warning [2020-04-13 23:07:32] ..TestAppmain.cpp 10 main Hello world