diff --git a/DysonNetwork.Pusher/Notification/NotificationFlushHandler.cs b/DysonNetwork.Pusher/Notification/NotificationFlushHandler.cs index 0ede414..514b6a0 100644 --- a/DysonNetwork.Pusher/Notification/NotificationFlushHandler.cs +++ b/DysonNetwork.Pusher/Notification/NotificationFlushHandler.cs @@ -5,7 +5,7 @@ using Quartz; namespace DysonNetwork.Pusher.Notification; -public class NotificationFlushHandler(AppDatabase db, Logger logger) : IFlushHandler +public class NotificationFlushHandler(AppDatabase db) : IFlushHandler { public async Task FlushAsync(IReadOnlyList items) { @@ -15,7 +15,6 @@ public class NotificationFlushHandler(AppDatabase db, Logger config.ConflictOption = ConflictOption.Ignore); - logger.LogInformation("Stored {Count} notifications", items.Count); } }