From b44e19574c65c49ad87f720c00ea8742f011b1a6 Mon Sep 17 00:00:00 2001 From: Tobias Hunger <tobias.hunger@nokia.com> Date: Fri, 13 Aug 2010 11:09:19 +0200 Subject: [PATCH] Quieten debug output --- src/plugins/projectexplorer/msvcparser.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/plugins/projectexplorer/msvcparser.cpp b/src/plugins/projectexplorer/msvcparser.cpp index d1fd00a2e68..a4e023a418c 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(); -- GitLab