[SCM] kdeconnect packaging branch, master, updated. debian/0.9g-1-1183-g9d69498

Maximiliano Curia maxy at moszumanska.debian.org
Fri Oct 14 14:28:19 UTC 2016


Gitweb-URL: http://git.debian.org/?p=pkg-kde/kde-extras/kdeconnect.git;a=commitdiff;h=7d6cf97

The following commit has been merged in the master branch:
commit 7d6cf9755178ed768a5e7f34531d149a5de0069d
Author: Aleix Pol <aleixpol at kde.org>
Date:   Sat Mar 14 02:42:18 2015 +0100

    Treat dbus errors are warnings rather than debug information
    
    Hopefully it will make it easier to pick up at some point.
---
 interfaces/devicesmodel.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/interfaces/devicesmodel.cpp b/interfaces/devicesmodel.cpp
index 2970c1e..6879d27 100644
--- a/interfaces/devicesmodel.cpp
+++ b/interfaces/devicesmodel.cpp
@@ -102,7 +102,7 @@ void DevicesModel::refreshDeviceList()
 {
     if (!m_dbusInterface->isValid()) {
         clearDevices();
-        qCDebug(KDECONNECT_INTERFACES) << "dbus interface not valid";
+        qCWarning(KDECONNECT_INTERFACES) << "dbus interface not valid";
         return;
     }
 
@@ -121,7 +121,7 @@ void DevicesModel::receivedDeviceList(QDBusPendingCallWatcher* watcher)
     clearDevices();
     QDBusPendingReply<QStringList> pendingDeviceIds = *watcher;
     if (pendingDeviceIds.isError()) {
-        qCDebug(KDECONNECT_INTERFACES) << pendingDeviceIds.error();
+        qCWarning(KDECONNECT_INTERFACES) << "error while refreshing device list" << pendingDeviceIds.error().message();
         return;
     }
 

-- 
kdeconnect packaging



More information about the pkg-kde-commits mailing list