aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2017-10-19 19:26:49 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2017-10-19 19:40:24 +0900
commit756e716886036447915a10992189774991f4dd8d (patch)
treef129974518d6b6651abd91f568b2819aa4ea9ee9
parentf2f85ba093df5dcd991fd206af4d79d57f4c7fc8 (diff)
downloadlibquotient-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.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/user.cpp b/user.cpp
index 171d6d6c..aa1aa447 100644
--- a/user.cpp
+++ b/user.cpp
@@ -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);
}