RunConfig: Do not log debug messages to output pane

Looks like this was done for debugging, but the user is not supposed to be
aware of internal implementation.

Change-Id: If24a2b0f85a04c2e88c5ef5fd66d34a606d46712
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
Orgad Shaneh
2017-07-07 11:15:43 +03:00
committed by Orgad Shaneh
parent f82bb1ec3a
commit 2dc906961e

View File

@@ -45,7 +45,6 @@
#include <coreplugin/icore.h> #include <coreplugin/icore.h>
#include <coreplugin/icontext.h> #include <coreplugin/icontext.h>
#include <coreplugin/messagemanager.h>
#include <QDir> #include <QDir>
#include <QPushButton> #include <QPushButton>
@@ -1201,7 +1200,6 @@ void RunControlPrivate::setState(RunControlState newState)
void RunControlPrivate::debugMessage(const QString &msg) void RunControlPrivate::debugMessage(const QString &msg)
{ {
Core::MessageManager::write(msg, Core::MessageManager::Silent);
qCDebug(statesLog()) << msg; qCDebug(statesLog()) << msg;
} }