Skip to content

Commit

Permalink
Merge pull request #1040 from xPaw/ws-spam
Browse files Browse the repository at this point in the history
Remove spammy websocket messages
  • Loading branch information
yaakov-h authored Oct 12, 2021
2 parents 8750f1c + 9c57042 commit 81e93c1
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions SteamKit2/SteamKit2/Networking/Steam3/WebSocketContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ public async Task SendAsync(byte[] data)
connection.DisconnectCore(userInitiated: false, specificContext: this);
return;
}
connection.log.LogDebug( nameof(WebSocketContext), "Sent {0} bytes.", data.Length);
}

public void Dispose()
Expand Down Expand Up @@ -154,7 +153,6 @@ public void Dispose()
{
case WebSocketMessageType.Binary:
ms.Write( buffer, 0, result.Count );
connection.log.LogDebug( nameof( WebSocketContext ), "Recieved {0} bytes.", result.Count );
break;

case WebSocketMessageType.Text:
Expand Down

0 comments on commit 81e93c1

Please sign in to comment.