2016-09-23 18:23:55 +00:00
|
|
|
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
|
2017-01-13 16:51:22 +00:00
|
|
|
@@ -10,7 +10,7 @@ set(kio_remote_SRCS
|
2016-09-23 18:23:55 +00:00
|
|
|
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})
|
2017-01-13 16:51:22 +00:00
|
|
|
target_link_libraries(kio_remote KF5::KIOCore KF5::I18n)
|
|
|
|
|