From e150c53c91d4583d086cad31f10a550a4acd98ff 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 3976e9950c3c5..fd98c0a11dab5 100644 --- a/src/gui/tray/activitylistmodel.cpp +++ b/src/gui/tray/activitylistmodel.cpp @@ -660,14 +660,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();