diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2016-10-28 22:32:50 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2016-10-28 22:32:50 +0900 |
commit | 17135e362a3c7b5355934837b548ceab40af9a9f (patch) | |
tree | 71637853df1a2a508a01b9c2f81a1aee3fa28bbc | |
parent | c0d5d26a77d09d2a7e339cf67b60dd319d3f34e8 (diff) | |
download | libquotient-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.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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; } |