Skip to content

Commit c760369

Browse files
committed
Don't output command length in logs
1 parent 8705113 commit c760369

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dotnet/src/webdriver/BiDi/Communication/Transport/WebSocketTransport.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public async Task SendAsJsonAsync(Command command, JsonSerializerOptions jsonSer
5959
{
6060
if (_logger.IsEnabled(LogEventLevel.Trace))
6161
{
62-
_logger.Trace($"BiDi SND >> {buffer.Length} > {Encoding.UTF8.GetString(buffer)}");
62+
_logger.Trace($"BiDi SND >> {Encoding.UTF8.GetString(buffer)}");
6363
}
6464

6565
await _webSocket.SendAsync(new ArraySegment<byte>(buffer), WebSocketMessageType.Text, true, cancellationToken).ConfigureAwait(false);

0 commit comments

Comments
 (0)