10

我有 2 台机器 Debian 7.8 64/32 位。我创建了一个简单的程序。在 main.cpp 中:

void action(QtMsgType type, const QMessageLogContext &context, const QString &msg)
{
    static QFile logFile("logfile.log");
    static QTextStream ts(&logFile);
    if(logFile.open(QFile::ReadWrite | QFile::Append))
    {
      ts << context.file << ":" << context.line << ":"
         << context.function << ": " << msg << endl;
      logFile.close();
    }
}

int main(int argc, char* argv[])
{
    QCoreApplication app(argc, argv);
    qInstallMessageHandler(action);
    qDebug() << "this is some log";
    return app.exec();
}

在“logfile.log”中,我必须看到:

main.cpp:30:int main(int, char**): this is some log 

但在 Debian 7.8 64 位 Qt 5.4.1 GCC 4.6.1 64 位上,我只看到:

:0:: this is some log 

我还在 Debian 7.8 32 位 Qt 5.3.1 GCC 4.6.1 32 位上进行了测试。它运行良好。
它是 Qt 5.4.1(64 位)的错误吗?还是我错过了什么?
你能帮助我吗?

4

1 回答 1

13

最有可能的是,您正在使用发布版本。默认情况下,Qt 不会在发布模式下填充这些字段。您可以通过定义此答案QT_MESSAGELOGCONTEXT中的说明来覆盖它并启用上下文日志记录。

于 2015-04-16T12:31:16.090 回答