aboutsummaryrefslogtreecommitdiff
path: root/lib/logging.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/logging.cpp')
-rw-r--r--lib/logging.cpp12
1 files changed, 5 insertions, 7 deletions
diff --git a/lib/logging.cpp b/lib/logging.cpp
index a7676c97..c346fbf1 100644
--- a/lib/logging.cpp
+++ b/lib/logging.cpp
@@ -18,17 +18,15 @@
#include "logging.h"
-#if QT_VERSION >= QT_VERSION_CHECK(5, 5, 0)
-# define LOGGING_CATEGORY(Name, Id) \
- Q_LOGGING_CATEGORY((Name), (Id), QtInfoMsg)
-#else
-# define LOGGING_CATEGORY(Name, Id) Q_LOGGING_CATEGORY((Name), (Id))
-#endif
+#define LOGGING_CATEGORY(Name, Id) Q_LOGGING_CATEGORY((Name), (Id), QtInfoMsg)
// Use LOGGING_CATEGORY instead of Q_LOGGING_CATEGORY in the rest of the code
LOGGING_CATEGORY(MAIN, "quotient.main")
-LOGGING_CATEGORY(PROFILER, "quotient.profiler")
LOGGING_CATEGORY(EVENTS, "quotient.events")
+LOGGING_CATEGORY(STATE, "quotient.events.state")
+LOGGING_CATEGORY(MESSAGES, "quotient.events.messages")
LOGGING_CATEGORY(EPHEMERAL, "quotient.events.ephemeral")
+LOGGING_CATEGORY(E2EE, "quotient.e2ee")
LOGGING_CATEGORY(JOBS, "quotient.jobs")
LOGGING_CATEGORY(SYNCJOB, "quotient.jobs.sync")
+LOGGING_CATEGORY(PROFILER, "quotient.profiler")