Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cannot retrieve debugging output in Qt Creator

In Qt Creator on Windows, qDebug() statements don't work, and the following message appears in the output window:

Cannot retrieve debugging output.

How can it be fixed?

like image 314
laurent Avatar asked Jan 17 '13 12:01

laurent


5 Answers

This problem can show up if more than one instance of Qt Creator is active. To fix the issue, simply close all the other instances of Qt Creator and it should work.

like image 115
laurent Avatar answered Oct 16 '22 01:10

laurent


For me, I solved the problem by simply closing the running application built with the other qt creator. So not necessary to close the other qt creator.

like image 43
Xing Li Avatar answered Oct 16 '22 02:10

Xing Li


Or you may be running a version of DebugView from Sysinternals, that causes the same result.

like image 37
Alex Strickland Avatar answered Oct 16 '22 02:10

Alex Strickland


For me this error message appears when I have more than one instance of my application, not of Qt Creator.

like image 31
Kévin Renella Avatar answered Oct 16 '22 00:10

Kévin Renella


Well, I had two instances of QtCreator and I could not close one of them. They work together. One workaround for this problem is redirecting your application output messages using qInstallMessageHandler.

#include "mainwindow.h"

#include <QApplication>

void redirectedOutput(QtMsgType, const QMessageLogContext &, const QString &);
QMutex debugOutMutex;

int main(int argc, char *argv[])
{
    QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
    QApplication app(argc, argv);

    qInstallMessageHandler(redirectedOutput);
    
    MainWindow w;
    w.show();
    
    return app.exec();
}

void redirectedOutput(QtMsgType type, const QMessageLogContext &context, const QString &msg)
{
    debugOutMutex.lock();
    std::cout << QDateTime::currentDateTime().toString("hh.mm.ss.zzz  ").toStdString() <<  msg.toStdString() << std::endl;
    if (type == QtFatalMsg) {
        abort();
    }
    debugOutMutex.unlock();
}

I added a QMutex too. If your application is utilizing more than one thread, debug outputs can be mixed.

like image 42
Mohammad Rahimi Avatar answered Oct 16 '22 01:10

Mohammad Rahimi