summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorkh1 <karsten.heimrich@digia.com>2013-05-29 17:05:14 +0200
committerKarsten Heimrich <karsten.heimrich@digia.com>2013-05-30 12:16:21 +0200
commit562d71cdd4a6df101b9da9d17c28f4e7d70480a2 (patch)
treeb7f9dbbe361a39abec7092e0b2607e09bc135e27 /src
parentf2212ccfc42ccfe3c4c05d026e739444f960bf4c (diff)
Omit debug output in case there is no value given.
Change-Id: Icad15ff57876947f6c07ce940f2395bfdb547a37 Reviewed-by: Tim Jenssen <tim.jenssen@digia.com>
Diffstat (limited to 'src')
-rw-r--r--src/libs/installer/packagemanagercore_p.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libs/installer/packagemanagercore_p.h b/src/libs/installer/packagemanagercore_p.h
index 839497385..11ed23230 100644
--- a/src/libs/installer/packagemanagercore_p.h
+++ b/src/libs/installer/packagemanagercore_p.h
@@ -86,7 +86,8 @@ public:
}
void setValue(const QString &key, const QVariant &value)
{
- qDebug() << "DummyConfigurationInterface called with key:" << key << "and value:" << value;
+ if (value.isNull())
+ qDebug() << "DummyConfigurationInterface called with key:" << key << "and value:" << value;
}
};