From ec1fb6209a9fe93b94998f3eec33f0b91a361d8f Mon Sep 17 00:00:00 2001 From: Matthieu Gallien Date: Tue, 11 Oct 2022 15:59:45 +0200 Subject: [PATCH] improve logs when adding sync errors in activity list of main dialog Signed-off-by: Matthieu Gallien --- src/gui/tray/activitylistmodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/tray/activitylistmodel.cpp b/src/gui/tray/activitylistmodel.cpp index de4d79c02..fc6df208f 100644 --- a/src/gui/tray/activitylistmodel.cpp +++ b/src/gui/tray/activitylistmodel.cpp @@ -547,7 +547,7 @@ void ActivityListModel::addEntriesToActivityList(const ActivityList &activityLis void ActivityListModel::addErrorToActivityList(const Activity &activity) { - qCInfo(lcActivity) << "Error successfully added to the notification list: " << activity._subject; + qCInfo(lcActivity) << "Error successfully added to the notification list: " << activity._message << activity._subject; addEntriesToActivityList({activity}); _notificationErrorsLists.prepend(activity); } -- 2.30.2