Skip to content

Commit

Permalink
Make inet debug be a java system property.
Browse files Browse the repository at this point in the history
  • Loading branch information
krestenkrab committed Sep 24, 2010
1 parent 4fb0786 commit 14e8348
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/erjang/ERT.java
Expand Up @@ -300,7 +300,7 @@ public static EAtom guard(boolean bool) {
public static final boolean DEBUG2 = false;
public static final boolean DEBUG_WAIT = false;
public static final boolean DEBUG_PORT = Boolean.getBoolean("erjang.debug.port");
public static final boolean DEBUG_INET = false;
public static final boolean DEBUG_INET = Boolean.getBoolean("erjang.debug.inet");
public static final boolean DEBUG_EFILE = false;
public static final EBinary EMPTY_BINARY = new EBinary(new byte[0]);
public static final ByteBuffer[] EMPTY_BYTEBUFFER_ARR = new ByteBuffer[0];
Expand Down

0 comments on commit 14e8348

Please sign in to comment.