From: Kevin Ottens Date: Wed, 1 Jul 2020 13:32:59 +0000 (+0200) Subject: Have a filter rule capturing all of nextcloud debug X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~222^2^2~126^2~4 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=7996eaae82510f611f344c912d4aabc4af9a5f92;p=nextcloud-desktop.git Have a filter rule capturing all of nextcloud debug This was half broken before that commit and the previous one since some of the categories would not be captured. Signed-off-by: Kevin Ottens --- diff --git a/src/libsync/logger.cpp b/src/libsync/logger.cpp index 5773532a2..6827308e1 100644 --- a/src/libsync/logger.cpp +++ b/src/libsync/logger.cpp @@ -216,7 +216,7 @@ void Logger::setLogFlush(bool flush) void Logger::setLogDebug(bool debug) { - QLoggingCategory::setFilterRules(debug ? QStringLiteral("sync.*.debug=true\ngui.*.debug=true") : QString()); + QLoggingCategory::setFilterRules(debug ? QStringLiteral("nextcloud.*.debug=true") : QString()); _logDebug = debug; }