silence, client ready

This commit is contained in:
Loporrit
2024-09-08 07:20:09 +00:00
parent 0b6af10a44
commit 16f8f23545
2 changed files with 2 additions and 2 deletions

View File

@@ -19,7 +19,7 @@ public class MainClientReadyMessageService : IClientReadyMessageService
{
_ = Task.Run(async () =>
{
_logger.LogInformation("Sending Client Ready for {uid}:{requestId} to SignalR", uid, requestId);
_logger.LogDebug("Sending Client Ready for {uid}:{requestId} to SignalR", uid, requestId);
await _mareHub.Clients.User(uid).SendAsync(nameof(IMareHub.Client_DownloadReady), requestId).ConfigureAwait(false);
});
}