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

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


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

The following commit has been merged in the master branch:
commit eb38ad533078bc8789550754a1f3ad75c09bbdd8
Author: Lukáš Tinkl <lukas at kde.org>
Date:   Mon Nov 10 15:53:01 2014 +0100

    turn critical debugs into qCCritical()
    
    just in case, for the future... :)
---
 core/daemon.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/core/daemon.cpp b/core/daemon.cpp
index 0ec6a7d..3688b4b 100644
--- a/core/daemon.cpp
+++ b/core/daemon.cpp
@@ -78,7 +78,7 @@ Daemon::Daemon(QObject *parent)
     //qCDebug(KDECONNECT_CORE) << "QCA supported capabilities:" << QCA::supportedFeatures().join(",");
     if(!QCA::isSupported("rsa")) {
         //TODO: Display this in a notification or another visible way
-        qCDebug(KDECONNECT_CORE) << "Error: KDE Connect could not find support for RSA in your QCA installation, if your distribution provides"
+        qCCritical(KDECONNECT_CORE) << "Error: KDE Connect could not find support for RSA in your QCA installation, if your distribution provides"
                    << "separate packages for QCA-ossl and QCA-gnupg plugins, make sure you have them installed and try again";
         return;
     }
@@ -93,7 +93,7 @@ Daemon::Daemon(QObject *parent)
 
         if (!privKey.open(QIODevice::ReadWrite | QIODevice::Truncate))
         {
-            qCDebug(KDECONNECT_CORE) << "Error: KDE Connect could not create private keys file: " << privateKeyPath;
+            qCCritical(KDECONNECT_CORE) << "Error: KDE Connect could not create private keys file: " << privateKeyPath;
             return;
         }
 

-- 
kdeconnect packaging



More information about the pkg-kde-commits mailing list