diff --git a/src/plugins/debugger/qml/qmlengine.cpp b/src/plugins/debugger/qml/qmlengine.cpp
index 6ef8f1b64c1fa1662c58ad08d47c4b9da785d311..0d456ae021f3e0f6215398f0a2011a1f992da3e1 100644
--- a/src/plugins/debugger/qml/qmlengine.cpp
+++ b/src/plugins/debugger/qml/qmlengine.cpp
@@ -331,7 +331,6 @@ void QmlEngine::setupConnection()
  #endif
 
     notifyEngineRunAndInferiorStopOk();
-    qDebug() << "CONNECTION SUCCESSFUL";
 
 //    reloadEngines();
 //    continueInferior();
@@ -352,7 +351,6 @@ void QmlEngine::continueInferior()
 
 void QmlEngine::interruptInferior()
 {
-    qDebug() << "INTERRUPT";
     QByteArray reply;
     QDataStream rs(&reply, QIODevice::WriteOnly);
     rs << QByteArray("INTERRUPT");
@@ -520,17 +518,11 @@ void QmlEngine::assignValueInDebugger(const QString &expression,
     const QString &value)
 {
     XSDEBUG("ASSIGNING: " << expression + '=' + value);
-    updateLocals();
-}
-
-void QmlEngine::updateLocals()
-{
-    qDebug() << "UPDATE LOCALS";
 }
 
 void QmlEngine::updateWatchData(const WatchData &data)
 {
-    qDebug() << "UPDATE WATCH DATA" << data.toString();
+//    qDebug() << "UPDATE WATCH DATA" << data.toString();
     //watchHandler()->rebuildModel();
     showStatusMessage(tr("Stopped."), 5000);
 
@@ -659,7 +651,6 @@ void QmlEngine::messageReceived(const QByteArray &message)
         watchHandler()->beginCycle();
         foreach (WatchData data, locals) {
             data.iname = "local." + data.exp;
-            qDebug() << data.iname << data.value;
             watchHandler()->insertData(data);
             if (watchHandler()->expandedINames().contains(data.iname))
                 expandObject(data.iname, data.objectId);
diff --git a/src/plugins/debugger/qml/qmlengine.h b/src/plugins/debugger/qml/qmlengine.h
index 49fe81caabfa5cf7886fb9f20576bd1ce8d7d8a1..7b44d8be7a660f6783493a0930c3aa9bbcd3b94f 100644
--- a/src/plugins/debugger/qml/qmlengine.h
+++ b/src/plugins/debugger/qml/qmlengine.h
@@ -119,7 +119,6 @@ private:
     bool supportsThreads() const { return true; }
     void maybeBreakNow(bool byFunction);
     void updateWatchData(const WatchData &data);
-    void updateLocals();
 
     unsigned int debuggerCapabilities() const;