From: Matthieu Gallien Date: Thu, 10 Oct 2024 08:36:16 +0000 (+0200) Subject: remove info level output from activity list model: not so usefull X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~12^2~5^2~132^2~1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=3835d377ff5eab8613c6a11714e5c30fa04a714d;p=nextcloud-desktop.git remove info level output from activity list model: not so usefull they just are printed when everything is working fine Signed-off-by: Matthieu Gallien --- diff --git a/src/gui/tray/activitylistmodel.cpp b/src/gui/tray/activitylistmodel.cpp index 03422c5f9..f2fc26ba1 100644 --- a/src/gui/tray/activitylistmodel.cpp +++ b/src/gui/tray/activitylistmodel.cpp @@ -656,14 +656,8 @@ void ActivityListModel::removeActivityFromActivityList(int row) void ActivityListModel::removeActivityFromActivityList(const Activity &activity) { - qCInfo(lcActivity) << "Activity/Notification/Error successfully dismissed: " << activity._subject; - qCInfo(lcActivity) << "Trying to remove Activity/Notification/Error from view... "; - const auto index = _finalList.indexOf(activity); if (index != -1) { - qCInfo(lcActivity) << "Activity/Notification/Error successfully removed from the list."; - qCInfo(lcActivity) << "Updating Activity/Notification/Error view."; - beginRemoveRows({}, index, index); _finalList.removeAt(index); endRemoveRows();