Minor tweak to SCEP.toString() to make it a bit more readable

This commit is contained in:
Joakim Erdfelt 2011-11-02 16:47:40 -07:00
parent c83b02c4a7
commit 5f653aa87a
1 changed files with 1 additions and 1 deletions

View File

@ -660,7 +660,7 @@ public class SelectChannelEndPoint extends ChannelEndPoint implements AsyncEndPo
{
synchronized(this)
{
return "SCEP@" + hashCode() + _channel+
return "SCEP@" + hashCode() + "/" + _channel+
"[o="+isOpen()+" d=" + _dispatched + ",io=" + _interestOps+
",w=" + _writable + ",rb=" + _readBlocked + ",wb=" + _writeBlocked + "]";
}