Removed old debug output

master
Harald Wolff 2019-08-30 12:42:28 +02:00
parent 8b031ae438
commit 094ffdc15c
1 changed files with 0 additions and 4 deletions

View File

@ -73,14 +73,10 @@ namespace ln.http.websocket
Opcode = (WebSocketOpcode)(firstByte & 0x0F);
Logging.Log(LogLevel.DEBUG, "WebSocket: FirstByte=0x{0:x8}",firstByte);
int secondByte = stream.ReadByte();
if (secondByte == -1)
throw new IOException();
Logging.Log(LogLevel.DEBUG, "WebSocket: SecondByte=0x{0:x8}", secondByte);
Mask = (secondByte & 0x80) != 0;
int pLength = (secondByte) & 0x7F;