aboutsummaryrefslogtreecommitdiff
path: root/events/typingevent.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'events/typingevent.cpp')
-rw-r--r--events/typingevent.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/events/typingevent.cpp b/events/typingevent.cpp
index 36a7e693..11c3a565 100644
--- a/events/typingevent.cpp
+++ b/events/typingevent.cpp
@@ -17,6 +17,7 @@
*/
#include "typingevent.h"
+#include "util.h"
#include <QtCore/QJsonArray>
#include <QtCore/QDebug>
@@ -54,6 +55,6 @@ TypingEvent* TypingEvent::fromJson(const QJsonObject& obj)
{
e->d->users << user.toString();
}
- qDebug() << "Typing:" << e->d->users;
+ qCDebug(EVENTS) << "Typing:" << e->d->users;
return e;
}