remove info level output from activity list model: not so usefull
authorMatthieu Gallien <matthieu.gallien@nextcloud.com>
Thu, 10 Oct 2024 08:36:16 +0000 (10:36 +0200)
committerMatthieu Gallien <matthieu.gallien@nextcloud.com>
Thu, 10 Oct 2024 12:36:51 +0000 (14:36 +0200)
they just are printed when everything is working fine

Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
src/gui/tray/activitylistmodel.cpp

index 03422c5f9fef856aade1bb87407522201d583986..f2fc26ba1e18a8b9363994a3420864ff9fbd501b 100644 (file)
@@ -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();