diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-04-27 15:52:56 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-04-27 15:52:56 +0200 |
commit | b28d4cf578f4ceabb0d40f65e55ac533027e8733 (patch) | |
tree | 70d46ce0bce71d29b2e30e021cba18c5ffbb3118 /common/notification.cpp | |
parent | 3017e10e7f06f41f1d64996a8191407c7a0a8f69 (diff) | |
download | sink-b28d4cf578f4ceabb0d40f65e55ac533027e8733.tar.gz sink-b28d4cf578f4ceabb0d40f65e55ac533027e8733.zip |
We get an offline status notification initially
Diffstat (limited to 'common/notification.cpp')
-rw-r--r-- | common/notification.cpp | 4 |
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 | ||
49 | QDebug operator<<(QDebug dbg, const Sink::Notification &n) | 49 | QDebug 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 | } |