From 8b353afdc41c6f528f933bd7f759c313ea6c08cf Mon Sep 17 00:00:00 2001 From: Palo Kisa Date: Fri, 10 May 2019 11:06:03 +0200 Subject: [PATCH] statusnotifier: Change log message to be more verbose --- plugin-statusnotifier/sniasync.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin-statusnotifier/sniasync.h b/plugin-statusnotifier/sniasync.h index 44af419fa..90414a2d0 100644 --- a/plugin-statusnotifier/sniasync.h +++ b/plugin-statusnotifier/sniasync.h @@ -79,7 +79,7 @@ class SniAsync : public QObject { QDBusPendingReply reply = *call; if (reply.isError()) - qDebug() << "Error on DBus request:" << reply.error(); + qDebug().noquote().nospace() << "Error on DBus request(" << mSni.service() << ',' << mSni.path() << "): " << reply.error(); finished(qdbus_cast::type>::argument_type>(reply.value())); call->deleteLater(); }