Skip to content

Commit

Permalink
remove logging every message
Browse files Browse the repository at this point in the history
  • Loading branch information
juuwel committed May 28, 2024
1 parent 5baa484 commit 935ebb2
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Tests/WebSocketTestClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ public WebSocketTestClient(string? url = null)
Client.MessageReceived.Subscribe(msg =>
{
BaseDto baseDto = JsonSerializer.Deserialize<BaseDto>(msg.Text, JsonSerializerOptions);
Console.WriteLine("Received message: " + baseDto.eventType);

if (baseDto.eventType == "ServerSendsErrorMessage" || baseDto.eventType.Contains("ServerResponds") ||
baseDto.eventType.Contains("ServerRejects"))
Expand Down

0 comments on commit 935ebb2

Please sign in to comment.