From 740d9a33cf4a532889cae964eee769ad9f26a492 Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Thu, 14 Aug 2025 20:46:19 +0800 Subject: [PATCH] :bug: Fix pusher service --- DysonNetwork.Pusher/Notification/NotificationFlushHandler.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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); } }