forked from qt-creator/qt-creator
Fix non responding on being overwhelmed with debug output
Change-Id: I0356c71850a6b5a2147ac35cb79ae53e234aa3e0 Task-number: QTCREATORBUG-14096 Reviewed-by: Kai Koehne <kai.koehne@theqtcompany.com> Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
This commit is contained in:
@@ -126,7 +126,7 @@ ApplicationLauncher::ApplicationLauncher(QObject *parent)
|
||||
connect(WinDebugInterface::instance(), SIGNAL(cannotRetrieveDebugOutput()),
|
||||
this, SLOT(cannotRetrieveDebugOutput()));
|
||||
connect(WinDebugInterface::instance(), SIGNAL(debugOutput(qint64,QString)),
|
||||
this, SLOT(checkDebugOutput(qint64,QString)));
|
||||
this, SLOT(checkDebugOutput(qint64,QString)), Qt::BlockingQueuedConnection);
|
||||
#endif
|
||||
#ifdef WITH_JOURNALD
|
||||
connect(JournaldWatcher::instance(), &JournaldWatcher::journaldOutput,
|
||||
|
Reference in New Issue
Block a user