From: Matthieu Gallien Date: Tue, 11 Oct 2022 13:59:45 +0000 (+0200) Subject: improve logs when adding sync errors in activity list of main dialog X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~12^2~11^2~211^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=ec1fb6209a9fe93b94998f3eec33f0b91a361d8f;p=nextcloud-desktop.git improve logs when adding sync errors in activity list of main dialog Signed-off-by: Matthieu Gallien --- 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); }