Details
Description
I did not see any debug output from theĀ "Application Output" tab.
e.g. this code
#include <QApplication> #include <QLabel> #include <QDebug> int main(int argc, char *argv[]) { QApplication a(argc, argv); QLabel l(QLabel::tr("Hello World")); l.show(); qDebug() << "DHello"; qWarning() << "WHello"; qCritical() << "CHello"; return a.exec(); }
does nothing.
But if I configure "Run Settings" as "Run in terminal" , then I see debug output inside of a new terminal window.