diff --git a/src/plugins/projectexplorer/msvcparser.cpp b/src/plugins/projectexplorer/msvcparser.cpp
index d1fd00a2e683a97c6ea861e7dd1be09485d321fc..a4e023a418c0df6d5797fcbd8302bda59bf764cb 100644
--- a/src/plugins/projectexplorer/msvcparser.cpp
+++ b/src/plugins/projectexplorer/msvcparser.cpp
@@ -43,9 +43,7 @@ MsvcParser::MsvcParser()
 void MsvcParser::stdOutput(const QString &line)
 {
     QString lne = line.trimmed();
-    qDebug() << "LINE:" << lne;
     if (m_compileRegExp.indexIn(lne) > -1 && m_compileRegExp.numCaptures() == 5) {
-        qDebug() << "     MATCHED compileRegExp!";
         Task task(Task::Unknown,
                   m_compileRegExp.cap(4) /* description */,
                   m_compileRegExp.cap(1) /* filename */,
@@ -61,7 +59,6 @@ void MsvcParser::stdOutput(const QString &line)
         return;
     }
     if (m_linkRegExp.indexIn(lne) > -1 && m_linkRegExp.numCaptures() == 3) {
-        qDebug() << "     MATCHED linkRegExp!";
         QString fileName = m_linkRegExp.cap(1);
         if (fileName.contains(QLatin1String("LINK"), Qt::CaseSensitive))
             fileName.clear();