aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2016-10-28 22:32:50 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2016-10-28 22:32:50 +0900
commit17135e362a3c7b5355934837b548ceab40af9a9f (patch)
tree71637853df1a2a508a01b9c2f81a1aee3fa28bbc
parentc0d5d26a77d09d2a7e339cf67b60dd319d3f34e8 (diff)
downloadlibquotient-17135e362a3c7b5355934837b548ceab40af9a9f.tar.gz
libquotient-17135e362a3c7b5355934837b548ceab40af9a9f.zip
Relax logging a bit
Kicking markMessagesAsRead() at each mouse move is still a bad idea - I'm looking at you Quaternion.
-rw-r--r--room.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/room.cpp b/room.cpp
index fa919f61..6fad463b 100644
--- a/room.cpp
+++ b/room.cpp
@@ -200,10 +200,12 @@ bool Room::promoteReadMarker(QString newLastReadEventId)
if( d->unreadMessages && stillUnreadMessagesCount == 0)
{
d->unreadMessages = false;
+ qDebug() << "Room" << displayName() << ": no more unread messages";
emit unreadMessagesChanged(this);
}
- qDebug() << "Room" << displayName()
- << ": still" << stillUnreadMessagesCount << "unread message(s)";
+ if (stillUnreadMessagesCount > 0)
+ qDebug() << "Room" << displayName()
+ << ": still" << stillUnreadMessagesCount << "unread message(s)";
return newLastReadEventId.isEmpty() || lastReadEvent(localUser) == newLastReadEventId;
}