diff --git a/core/src/main/groovy/com/muwire/core/files/SideCarFileEvent.groovy b/core/src/main/groovy/com/muwire/core/files/SideCarFileEvent.groovy index 511314e1..9ee9ef82 100644 --- a/core/src/main/groovy/com/muwire/core/files/SideCarFileEvent.groovy +++ b/core/src/main/groovy/com/muwire/core/files/SideCarFileEvent.groovy @@ -4,4 +4,9 @@ import com.muwire.core.Event class SideCarFileEvent extends Event { File file + + @Override + public String toString() { + return super.toString() + " file: "+file.getAbsolutePath() + } }