diff options
author | Elvis Angelaccio <elvis.angelaccio@kde.org> | 2017-04-30 15:19:31 +0200 |
---|---|---|
committer | Elvis Angelaccio <elvis.angelaccio@kde.org> | 2017-04-30 15:21:05 +0200 |
commit | 3fa1ee3c6b04d0793ccca3f903797625f7a08d03 (patch) | |
tree | 1ee17f9016b0f333c08cf5d0eb0c8a8ab86a8573 /settings.cpp | |
parent | 9a13bbfd8a800712d0a2fcc4887c8d4115d06d4e (diff) | |
download | libquotient-3fa1ee3c6b04d0793ccca3f903797625f7a08d03.tar.gz libquotient-3fa1ee3c6b04d0793ccca3f903797625f7a08d03.zip |
Port to categorized logging
This greatly reduces the noise made by quaternion.
To enable full logging, export the following variable:
QT_LOGGING_RULES="libqmatrixclient.*.debug=true"
Diffstat (limited to 'settings.cpp')
-rw-r--r-- | settings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings.cpp b/settings.cpp index 45af33e3..fbcd845f 100644 --- a/settings.cpp +++ b/settings.cpp @@ -10,7 +10,7 @@ Settings::~Settings() void Settings::setValue(const QString& key, const QVariant& value)
{
-// qDebug() << "Setting" << key << "to" << value;
+// qCDebug() << "Setting" << key << "to" << value;
QSettings::setValue(key, value);
}
|