Commit b40c2163 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gaston

Added #toString().


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@1312 b35dd754-fafc-0310-a699-88a17e54d16e
parent 28fc8967
......@@ -217,4 +217,8 @@ public abstract class Session implements RoutableChannelHandler {
* @param packet the received packet by this session.
*/
public abstract void packetReceived(Packet packet);
public String toString() {
return super.toString() + " status: " + status + " address: " + address + " id: " + streamID;
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment