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:40:24 +0900 |
commit | 756e716886036447915a10992189774991f4dd8d (patch) | |
tree | f129974518d6b6651abd91f568b2819aa4ea9ee9 | |
parent | f2f85ba093df5dcd991fd206af4d79d57f4c7fc8 (diff) | |
download | libquotient-756e716886036447915a10992189774991f4dd8d.tar.gz libquotient-756e716886036447915a10992189774991f4dd8d.zip |
Don't log renames
This causes enormous traffic in the logs upon every startup when
main.debug logs are on.
-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); } |