Temp debugging to hunt #14, will remove in 2.0.3

This commit is contained in:
GideonLeGrange 2014-11-26 09:45:53 +02:00
parent adaca0413e
commit 57534fac63
1 changed files with 2 additions and 0 deletions

View File

@ -328,6 +328,8 @@ public final class ApiConnectionImpl extends ApiConnection {
return unpackError(); return unpackError();
case "!halt": case "!halt":
return unpackError(); return unpackError();
case "" :
System.out.printf("sock.isClosed() = %s, sock.isInputShutdown() = %s\n", sock.isClosed(), sock.isInputShutdown());
default: default:
throw new ApiDataException(String.format("Unexpected line '%s'", line)); throw new ApiDataException(String.format("Unexpected line '%s'", line));
} }