diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-10-19 19:26:49 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-10-19 19:26:49 +0900 |
commit | e4fabf6e618b5045efec2629cb5d7b5bf73677e8 (patch) | |
tree | 106cc328c67308d8229278e782add52a1f2d75f2 /user.cpp | |
parent | 55e0375851c439c97fc353c61d7c8b2b19485082 (diff) | |
download | libquotient-e4fabf6e618b5045efec2629cb5d7b5bf73677e8.tar.gz libquotient-e4fabf6e618b5045efec2629cb5d7b5bf73677e8.zip |
Don't log renames
This causes enormous traffic in the logs upon every startup when
main.debug logs are on.
Diffstat (limited to 'user.cpp')
-rw-r--r-- | user.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -85,8 +85,6 @@ void User::updateName(const QString& newName) const auto oldName = name(); if (d->name != newName) { - qCDebug(MAIN) << "Renaming" << id() - << "from" << oldName << "to" << newName; d->name = newName; emit nameChanged(this, oldName); } |