diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-07-07 16:47:09 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-07-07 16:47:09 +0900 |
commit | 40002b09f741e5ce1ed618141b2a218438d97084 (patch) | |
tree | fddc88ec05c3ff8ee7f63abde5e865b91f509289 | |
parent | 6c9d895c03b9d0e7ffbf5bace3994536ff3215be (diff) | |
download | libquotient-40002b09f741e5ce1ed618141b2a218438d97084.tar.gz libquotient-40002b09f741e5ce1ed618141b2a218438d97084.zip |
Logging categories: libqmatrixclient.* -> quotient.*
-rw-r--r-- | lib/logging.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/logging.cpp b/lib/logging.cpp index 7476781f..a0c7f7bb 100644 --- a/lib/logging.cpp +++ b/lib/logging.cpp @@ -25,9 +25,9 @@ #endif // Use LOGGING_CATEGORY instead of Q_LOGGING_CATEGORY in the rest of the code -LOGGING_CATEGORY(MAIN, "libqmatrixclient.main") -LOGGING_CATEGORY(PROFILER, "libqmatrixclient.profiler") -LOGGING_CATEGORY(EVENTS, "libqmatrixclient.events") -LOGGING_CATEGORY(EPHEMERAL, "libqmatrixclient.events.ephemeral") -LOGGING_CATEGORY(JOBS, "libqmatrixclient.jobs") -LOGGING_CATEGORY(SYNCJOB, "libqmatrixclient.jobs.sync") +LOGGING_CATEGORY(MAIN, "quotient.main") +LOGGING_CATEGORY(PROFILER, "quotient.profiler") +LOGGING_CATEGORY(EVENTS, "quotient.events") +LOGGING_CATEGORY(EPHEMERAL, "quotient.events.ephemeral") +LOGGING_CATEGORY(JOBS, "quotient.jobs") +LOGGING_CATEGORY(SYNCJOB, "quotient.jobs.sync") |