aboutsummaryrefslogtreecommitdiff
path: root/lib/logging.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/logging.cpp')
-rw-r--r--lib/logging.cpp11
1 files changed, 5 insertions, 6 deletions
diff --git a/lib/logging.cpp b/lib/logging.cpp
index a0c7f7bb..c346fbf1 100644
--- a/lib/logging.cpp
+++ b/lib/logging.cpp
@@ -13,21 +13,20 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#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
// 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")