From 17eff7d77f9ffef1ea87a1fe513bd137fe78578d Mon Sep 17 00:00:00 2001 From: Zlatin Balevsky Date: Sat, 16 Nov 2019 00:25:50 +0000 Subject: [PATCH] toString --- .../groovy/com/muwire/core/chat/ChatConnectionEvent.groovy | 4 ++++ 1 file changed, 4 insertions(+) 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() + } }