aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Rusakov <Kitsune-Ral@users.sf.net>2022-07-25 16:07:47 +0200
committerAlexey Rusakov <Kitsune-Ral@users.sf.net>2022-07-25 16:10:34 +0200
commitc0ecba539aecebc7f3e32f40fc1d45d80d5e1f5c (patch)
treecbbfd071cba26b5788f67df98012cb1c27a9c656
parentaac349a2b3fe643b55808586f461642ea15da8e5 (diff)
downloadlibquotient-c0ecba539aecebc7f3e32f40fc1d45d80d5e1f5c.tar.gz
libquotient-c0ecba539aecebc7f3e32f40fc1d45d80d5e1f5c.zip
Fix accidentally logging all receipt authors
...instead of just the number of them.
-rw-r--r--lib/room.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/room.cpp b/lib/room.cpp
index 53474c24..f5d8709b 100644
--- a/lib/room.cpp
+++ b/lib/room.cpp
@@ -3274,7 +3274,7 @@ Room::Changes Room::processEphemeralEvent(EventPtr&& event)
if (updatedUserIds.size() > 10
|| et.nsecsElapsed() >= profilerMinNsecs())
qDebug(PROFILER)
- << "Processing" << updatedUserIds
+ << "Processing" << updatedUserIds.size()
<< "non-local receipt(s) on" << receiptsJson.size()
<< "event(s) in" << objectName() << "took" << et;
if (!updatedUserIds.empty())