🔇 Lower some log level in pusher service

This commit is contained in:
2025-08-14 15:10:41 +08:00
parent 7ec3f25d43
commit b037ecad79
2 changed files with 8 additions and 7 deletions

View File

@@ -191,7 +191,7 @@ public class PushService
}).ToList();
await _db.BulkInsertAsync(notifications);
}
_logger.LogInformation(
"Delivering notification in batch: {NotificationTopic} #{NotificationId} with meta {NotificationMeta}",
notification.Topic,
@@ -304,6 +304,6 @@ public class PushService
}
_logger.LogInformation(
$"Successfully pushed notification #{notification.Id} to device {subscription.DeviceId}");
$"Successfully pushed notification #{notification.Id} to device {subscription.DeviceId} provider {subscription.Provider}");
}
}
}