From f3e3a581f2e4f7f934f929181b211dc32eb204ee Mon Sep 17 00:00:00 2001 From: Matthieu Gallien Date: Thu, 10 Oct 2024 10:36:16 +0200 Subject: [PATCH] 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 --- src/gui/tray/activitylistmodel.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/gui/tray/activitylistmodel.cpp b/src/gui/tray/activitylistmodel.cpp index 03422c5f9fef8..f2fc26ba1e18a 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();