diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-05-01 01:54:53 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-01 01:54:53 +0900 |
commit | 096a05d59654244f7c928dc5f2537a760070a577 (patch) | |
tree | 1ee17f9016b0f333c08cf5d0eb0c8a8ab86a8573 /jobs/joinroomjob.cpp | |
parent | 9a13bbfd8a800712d0a2fcc4887c8d4115d06d4e (diff) | |
parent | 3fa1ee3c6b04d0793ccca3f903797625f7a08d03 (diff) | |
download | libquotient-096a05d59654244f7c928dc5f2537a760070a577.tar.gz libquotient-096a05d59654244f7c928dc5f2537a760070a577.zip |
Merge pull request #61 from elvisangelaccio/qloggingcategory
Port to categorized logging
Diffstat (limited to 'jobs/joinroomjob.cpp')
-rw-r--r-- | jobs/joinroomjob.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/jobs/joinroomjob.cpp b/jobs/joinroomjob.cpp index a6f65c31..dce1f54e 100644 --- a/jobs/joinroomjob.cpp +++ b/jobs/joinroomjob.cpp @@ -17,6 +17,7 @@ */ #include "joinroomjob.h" +#include "util.h" #include <QtNetwork/QNetworkReply> @@ -56,6 +57,6 @@ BaseJob::Status JoinRoomJob::parseJson(const QJsonDocument& data) return Success; } - qDebug() << data; + qCDebug(JOBS) << data; return { UserDefinedError, "No room_id in the JSON response" }; } |