Hello community,

here is the log from the commit of package libktorrent for openSUSE:Factory 
checked in at 2016-10-28 12:26:30
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libktorrent (Old)
 and      /work/SRC/openSUSE:Factory/.libktorrent.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libktorrent"

Changes:
--------
--- /work/SRC/openSUSE:Factory/libktorrent/libktorrent.changes  2016-09-07 
11:43:40.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.libktorrent.new/libktorrent.changes     
2016-10-28 12:26:32.000000000 +0200
@@ -1,0 +2,5 @@
+Sun Oct 23 21:54:45 UTC 2016 - [email protected]
+
+- Added Fix-logging-framework-spamming.patch (kde#362195)
+
+-------------------------------------------------------------------

New:
----
  Fix-logging-framework-spamming.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ libktorrent.spec ++++++
--- /var/tmp/diff_new_pack.vOOB6M/_old  2016-10-28 12:26:33.000000000 +0200
+++ /var/tmp/diff_new_pack.vOOB6M/_new  2016-10-28 12:26:33.000000000 +0200
@@ -29,6 +29,8 @@
 Source0:        
http://download.kde.org/stable/ktorrent/%{ktor_ver}/%{name}-%{version}.tar.xz
 # PATCH-FIX-OPENSUSE require-lower-LibGMP.patch
 Patch0:         require-lower-LibGMP.patch
+# PATCH-FIX-UPSTREAM Fix-logging-framework-spamming.patch
+Patch1:         Fix-logging-framework-spamming.patch
 BuildRequires:  boost-devel
 BuildRequires:  doxygen
 BuildRequires:  extra-cmake-modules
@@ -74,6 +76,7 @@
 %prep
 %setup -q -n %{name}-%{version}
 %patch0 -p1
+%patch1 -p1
 
 %build
 %cmake_kf5 -d build

++++++ Fix-logging-framework-spamming.patch ++++++
From: Martin T. H. Sandsmark <[email protected]>
Date: Thu, 06 Oct 2016 21:43:46 +0000
Subject: Fix logging framework spamming
X-Git-Url: 
http://quickgit.kde.org/?p=libktorrent.git&a=commitdiff&h=a65d69e68ad860601c23bc7d4dadbded10a81072
---
Fix logging framework spamming

3945a53ba65125b430e1f681deb2558d01ab052a forced the logging framework to
always print all log information (including debug logs) to standard out,
this makes it respect the to_stdout again.

BUG: 362195
---


--- a/src/util/log.cpp
+++ b/src/util/log.cpp
@@ -276,7 +276,7 @@
        void InitLog(const QString & file,bool rotate,bool 
handle_qt_messages,bool to_stdout)
        {
                global_log->setOutputFile(file,rotate,handle_qt_messages);
-               global_log->setOutputToConsole(true);
+               global_log->setOutputToConsole(to_stdout);
        }
 
        void AddLogMonitor(LogMonitorInterface* m)

Reply via email to