summaryrefslogtreecommitdiffstats
path: root/common/notification.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/notification.cpp')
-rw-r--r--common/notification.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/notification.cpp b/common/notification.cpp
index e688b6d..da31e20 100644
--- a/common/notification.cpp
+++ b/common/notification.cpp
@@ -48,8 +48,8 @@ static QByteArray name(int type)
48 48
49QDebug operator<<(QDebug dbg, const Sink::Notification &n) 49QDebug operator<<(QDebug dbg, const Sink::Notification &n)
50{ 50{
51 dbg << "Notification(Type: " << name(n.type) << "Id, : " << n.id << ", Code: "; 51 dbg << "Notification(Type:" << name(n.type) << "Id, :" << n.id << ", Code:";
52 dbg << n.code; 52 dbg << n.code;
53 dbg << ", Message: " << n.message << ", Entities: " << n.entities << ")"; 53 dbg << ", Message:" << n.message << ", Entities:" << n.entities << ")";
54 return dbg.space(); 54 return dbg.space();
55} 55}