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);
});
}

View File

@@ -36,7 +36,7 @@ public class ShardClientReadyMessageService : IClientReadyMessageService
};
msg.Headers.Authorization = new AuthenticationHeaderValue("Bearer", _tokenGenerator.Token);
_logger.LogInformation("Sending Client Ready for {uid}:{requestId} to {path}", uid, requestId, path);
_logger.LogDebug("Sending Client Ready for {uid}:{requestId} to {path}", uid, requestId, path);
try
{
using var result = await _httpClient.SendAsync(msg).ConfigureAwait(false);