fix log level

This commit is contained in:
2025-12-21 04:28:36 +09:00
parent b99f68a891
commit 03105e0755

View File

@@ -641,8 +641,8 @@ public unsafe class LightFinderPlateHandler : IHostedService, IMediatorSubscribe
return; return;
_activeBroadcastingCids = newSet; _activeBroadcastingCids = newSet;
if (_logger.IsEnabled(LogLevel.Information)) if (_logger.IsEnabled(LogLevel.Trace))
_logger.LogInformation("Active broadcast CIDs: {Cids}", string.Join(',', _activeBroadcastingCids)); _logger.LogTrace("Active broadcast IDs: {Cids}", string.Join(',', _activeBroadcastingCids));
FlagRefresh(); FlagRefresh();
} }