aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/buildgraph/projectbuilddata.cpp
diff options
context:
space:
mode:
authorOrgad Shaneh <orgad.shaneh@audiocodes.com>2018-07-03 11:31:43 +0300
committerOrgad Shaneh <orgads@gmail.com>2018-07-03 14:36:19 +0000
commit6b0dfb2c3a185bdd12437e0bedcca7dd6ceba9b2 (patch)
treeec9519c2e96a70518e224600a39040f5e84f4723 /src/lib/corelib/buildgraph/projectbuilddata.cpp
parentf0c28b38f40057d334e1cbf77916462267147369 (diff)
Remove quotes and escaping from debug logs
Before: qbs.exec: adding leaf "RULE [c_pch][c_pch_src] [test] located at F:\\Projects\\qt-creator\\build-qtc\\share\\qtcreator\\qbs\\share\\qbs\\modules\\cpp\\GenericGCC.qbs:616:18" After: qbs.exec: adding leaf RULE [c_pch][c_pch_src] [test] located at F:\Projects\qt-creator\build-qtc\share\qtcreator\qbs\share\qbs\modules\cpp\GenericGCC.qbs:616:18 Change-Id: Ia1bcc197b9ce71934febbde7515b5d71d3cde0db Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/lib/corelib/buildgraph/projectbuilddata.cpp')
-rw-r--r--src/lib/corelib/buildgraph/projectbuilddata.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/corelib/buildgraph/projectbuilddata.cpp b/src/lib/corelib/buildgraph/projectbuilddata.cpp
index 87e79c7b9..88de0f392 100644
--- a/src/lib/corelib/buildgraph/projectbuilddata.cpp
+++ b/src/lib/corelib/buildgraph/projectbuilddata.cpp
@@ -363,8 +363,8 @@ private:
node->product = m_product;
node->setRule(rule);
m_product->buildData->addNode(node);
- qCDebug(lcBuildGraph) << "create" << node->toString()
- << "for product" << m_product->uniqueName();
+ qCDebug(lcBuildGraph).noquote() << "create" << node->toString()
+ << "for product" << m_product->uniqueName();
}
if (parentRule) {
RuleNode *parent = m_nodePerRule.value(parentRule);