From b9be1e17d154f748fb0ac38cc2df02ed8e5156d3 Mon Sep 17 00:00:00 2001 From: Aleix Pol Date: Sun, 12 Jun 2016 20:16:19 +0200 Subject: [PATCH] Specify for which device we're not delivering the packages --- core/device.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/device.cpp b/core/device.cpp index b9728104e..74f5ff02d 100644 --- a/core/device.cpp +++ b/core/device.cpp @@ -332,7 +332,7 @@ void Device::privateReceivedPackage(const NetworkPackage& np) } else if (isTrusted()) { const QList plugins = m_pluginsByIncomingInterface.values(np.type()); if (plugins.isEmpty()) { - qWarning() << "discarding unsupported package" << np.type(); + qWarning() << "discarding unsupported package" << np.type() << "for" << name(); } foreach(KdeConnectPlugin* plugin, plugins) { plugin->receivePackage(np);