summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJavier <dev.git@javispedro.com>2014-11-30 21:01:53 +0100
committerJavier <dev.git@javispedro.com>2014-11-30 21:01:53 +0100
commit2e0e33bd2d588a96fc471d024de583ec7d287f5e (patch)
treeab94ac0fd3ea64a91c566f2c74227c7b762e6509
parentf7c8244641a4242f6a8c706bd918494b23e48075 (diff)
remove now useless debug() msg
-rw-r--r--daemon/appmsgmanager.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/daemon/appmsgmanager.cpp b/daemon/appmsgmanager.cpp
index 9eb948e..23bf802 100644
--- a/daemon/appmsgmanager.cpp
+++ b/daemon/appmsgmanager.cpp
@@ -9,7 +9,6 @@ AppMsgManager::AppMsgManager(WatchConnector *watch, QObject *parent)
watch->setEndpointHandler(WatchConnector::watchLAUNCHER,
[this](const QByteArray &data) {
if (data.at(0) == WatchConnector::appmsgPUSH) {
- logger()->debug() << "LAUNCHER is PUSHing" << data.toHex();
Unpacker u(data);
u.skip(1); // skip data.at(0) which we just already checked above.
uint transaction = u.read<quint8>();