aboutsummaryrefslogtreecommitdiff
path: root/events/unknownevent.cpp
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2017-05-01 01:54:53 +0900
committerGitHub <noreply@github.com>2017-05-01 01:54:53 +0900
commit096a05d59654244f7c928dc5f2537a760070a577 (patch)
tree1ee17f9016b0f333c08cf5d0eb0c8a8ab86a8573 /events/unknownevent.cpp
parent9a13bbfd8a800712d0a2fcc4887c8d4115d06d4e (diff)
parent3fa1ee3c6b04d0793ccca3f903797625f7a08d03 (diff)
downloadlibquotient-096a05d59654244f7c928dc5f2537a760070a577.tar.gz
libquotient-096a05d59654244f7c928dc5f2537a760070a577.zip
Merge pull request #61 from elvisangelaccio/qloggingcategory
Port to categorized logging
Diffstat (limited to 'events/unknownevent.cpp')
-rw-r--r--events/unknownevent.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/events/unknownevent.cpp b/events/unknownevent.cpp
index 70dcfcbb..b2947bf7 100644
--- a/events/unknownevent.cpp
+++ b/events/unknownevent.cpp
@@ -59,7 +59,7 @@ UnknownEvent* UnknownEvent::fromJson(const QJsonObject& obj)
e->parseJson(obj);
e->d->type = obj.value("type").toString();
e->d->content = QString::fromUtf8(QJsonDocument(obj).toJson());
- qDebug() << "UnknownEvent, JSON follows:";
- qDebug() << formatJson << obj;
+ qCDebug(EVENTS) << "UnknownEvent, JSON follows:";
+ qCDebug(EVENTS) << formatJson << obj;
return e;
}