diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-07-25 16:07:47 +0200 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-07-25 16:10:34 +0200 |
commit | c0ecba539aecebc7f3e32f40fc1d45d80d5e1f5c (patch) | |
tree | cbbfd071cba26b5788f67df98012cb1c27a9c656 /lib/room.cpp | |
parent | aac349a2b3fe643b55808586f461642ea15da8e5 (diff) | |
download | libquotient-c0ecba539aecebc7f3e32f40fc1d45d80d5e1f5c.tar.gz libquotient-c0ecba539aecebc7f3e32f40fc1d45d80d5e1f5c.zip |
Fix accidentally logging all receipt authors
...instead of just the number of them.
Diffstat (limited to 'lib/room.cpp')
-rw-r--r-- | lib/room.cpp | 2 |
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()) |