summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@nokia.com>2010-08-13 11:09:19 +0200
committerTobias Hunger <tobias.hunger@nokia.com>2010-08-13 11:41:12 +0200
commitb44e19574c65c49ad87f720c00ea8742f011b1a6 (patch)
tree4be5860bf011331fa278c0d1c0fad605c9e93dd4 /src
parent76d3b8f5363ee7a0b3cb3d212be9f2107988b84c (diff)
downloadqt-creator-b44e19574c65c49ad87f720c00ea8742f011b1a6.tar.gz
Quieten debug output
Diffstat (limited to 'src')
-rw-r--r--src/plugins/projectexplorer/msvcparser.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/plugins/projectexplorer/msvcparser.cpp b/src/plugins/projectexplorer/msvcparser.cpp
index d1fd00a2e6..a4e023a418 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();