Cleaning up logging

This commit is contained in:
Joakim Erdfelt 2012-06-28 14:09:52 -07:00
parent 03d37b58f2
commit daf3fa4ddf
1 changed files with 0 additions and 4 deletions

View File

@ -5,7 +5,6 @@ import static org.hamcrest.Matchers.*;
import java.nio.ByteBuffer;
import org.eclipse.jetty.util.StringUtil;
import org.eclipse.jetty.websocket.Debug;
import org.eclipse.jetty.websocket.api.OpCode;
import org.eclipse.jetty.websocket.api.StatusCode;
import org.eclipse.jetty.websocket.api.WebSocketBehavior;
@ -21,9 +20,6 @@ public class ClosePayloadParserTest
{
String expectedReason = "Game Over";
Debug.enableDebugLogging(Parser.class);
Debug.enableDebugLogging(ClosePayloadParser.class);
byte utf[] = expectedReason.getBytes(StringUtil.__UTF8_CHARSET);
ByteBuffer payload = ByteBuffer.allocate(utf.length + 2);
payload.putShort(StatusCode.NORMAL);