Merge pull request #6234 from nextcloud/strugee-patch-1

Don't log notification successes as warnings
This commit is contained in:
Matthieu Gallien 2023-11-21 08:46:57 +01:00 коммит произвёл GitHub
Родитель f3663bbbce 5c7fb58919
Коммит 219823f157
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -56,7 +56,7 @@ bool ServerNotificationHandler::startFetchNotifications()
void ServerNotificationHandler::slotEtagResponseHeaderReceived(const QByteArray &value, int statusCode)
{
if (statusCode == successStatusCode) {
qCWarning(lcServerNotification) << "New Notification ETag Response Header received " << value;
qCInfo(lcServerNotification) << "New Notification ETag Response Header received " << value;
auto *account = qvariant_cast<AccountState *>(sender()->property(propertyAccountStateC));
account->setNotificationsEtagResponseHeader(value);
}
@ -72,7 +72,7 @@ void ServerNotificationHandler::slotNotificationsReceived(const QJsonDocument &j
}
if (statusCode == notModifiedStatusCode) {
qCWarning(lcServerNotification) << "Status code " << statusCode << " Not Modified - No new notifications.";
qCInfo(lcServerNotification) << "Status code " << statusCode << " Not Modified - No new notifications.";
deleteLater();
emit jobFinished();
return;