diff --git a/core/src/main/groovy/com/muwire/core/chat/ChatConnectionEvent.groovy b/core/src/main/groovy/com/muwire/core/chat/ChatConnectionEvent.groovy index 93172d04..561ab5e2 100644 --- a/core/src/main/groovy/com/muwire/core/chat/ChatConnectionEvent.groovy +++ b/core/src/main/groovy/com/muwire/core/chat/ChatConnectionEvent.groovy @@ -7,4 +7,8 @@ class ChatConnectionEvent extends Event { ChatConnectionAttemptStatus status Persona persona ChatLink connection + + public String toString() { + super.toString() + " " + persona.getHumanReadableName() + " " + status.toString() + } }