Files
plasma5-workspace/change-kioremote-severity.patch
Luca Beltrame 30350e9cb6 Accepting request 429520 from home:Vogtinator:branches:KDE:Frameworks5:LTS
- Add change-kioremote-severity.patch to avoid filling the home folder
  with useless log messages (boo#997173)

OBS-URL: https://build.opensuse.org/request/show/429520
OBS-URL: https://build.opensuse.org/package/show/KDE:Frameworks5:LTS/plasma5-workspace?expand=0&rev=15
2016-09-22 21:29:41 +00:00

25 lines
1.0 KiB
Diff

From: Fabian Vogt <fabian@ritter-vogt.de>
Subject: Change default log severity for log_kioremote
References: boo#997173
This category has a lot of debug output, so it should be disabled by
default.
---
kioslave/remote/CMakeLists.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: plasma-workspace-5.7.95/kioslave/remote/CMakeLists.txt
===================================================================
--- plasma-workspace-5.7.95.orig/kioslave/remote/CMakeLists.txt
+++ plasma-workspace-5.7.95/kioslave/remote/CMakeLists.txt
@@ -11,7 +11,7 @@ set(kio_remote_SRCS
ecm_qt_declare_logging_category(kio_remote_SRCS HEADER debug.h
IDENTIFIER KIOREMOTE_LOG
CATEGORY_NAME log_kioremote
- DEFAULT_SEVERITY Info)
+ DEFAULT_SEVERITY Debug)
add_library(kio_remote MODULE ${kio_remote_SRCS})
target_link_libraries(kio_remote KF5::KIOCore KF5::KDELibs4Support)