silence, client ready
This commit is contained in:
		| @@ -19,7 +19,7 @@ public class MainClientReadyMessageService : IClientReadyMessageService | |||||||
|     { |     { | ||||||
|         _ = Task.Run(async () => |         _ = 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); |             await _mareHub.Clients.User(uid).SendAsync(nameof(IMareHub.Client_DownloadReady), requestId).ConfigureAwait(false); | ||||||
|         }); |         }); | ||||||
|     } |     } | ||||||
|   | |||||||
| @@ -36,7 +36,7 @@ public class ShardClientReadyMessageService : IClientReadyMessageService | |||||||
|             }; |             }; | ||||||
|             msg.Headers.Authorization = new AuthenticationHeaderValue("Bearer", _tokenGenerator.Token); |             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 |             try | ||||||
|             { |             { | ||||||
|                 using var result = await _httpClient.SendAsync(msg).ConfigureAwait(false); |                 using var result = await _httpClient.SendAsync(msg).ConfigureAwait(false); | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Loporrit
					Loporrit