aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Rusakov <Kitsune-Ral@users.sf.net>2021-11-21 12:24:11 +0100
committerAlexey Rusakov <Kitsune-Ral@users.sf.net>2021-11-21 12:24:11 +0100
commitffb1f978c377e0442bed9eab17727932d59fc55a (patch)
tree50e2c591bf1fcc9fd069929f566bbc53e7b1b831
parent9e5c9ff3ef0eeff8abd0bc3508d9152506e27e30 (diff)
downloadlibquotient-ffb1f978c377e0442bed9eab17727932d59fc55a.tar.gz
libquotient-ffb1f978c377e0442bed9eab17727932d59fc55a.zip
Log the hexadecimal value of Changes too, just in case
-rw-r--r--lib/room.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/room.cpp b/lib/room.cpp
index 8bad9084..c166254e 100644
--- a/lib/room.cpp
+++ b/lib/room.cpp
@@ -1814,7 +1814,11 @@ void Room::Private::postprocessChanges(Changes changes, bool saveState)
if (changes & Change::Highlights)
emit q->highlightCountChanged();
- qCDebug(MAIN) << terse << changes << "in" << q->objectName();
+ qCDebug(MAIN) << terse << changes << "= hex" <<
+#if QT_VERSION >= QT_VERSION_CHECK(5, 14, 0)
+ Qt::
+#endif
+ hex << uint(changes) << "in" << q->objectName();
emit q->changed(changes);
if (saveState)
connection->saveRoomState(q);