Add toString for ObjectEvent

This commit is contained in:
Eugene Yokota 2017-05-18 00:34:41 -04:00
parent 122c738913
commit feeb6291cd
1 changed files with 2 additions and 0 deletions

View File

@ -15,6 +15,8 @@ final class ObjectEvent[A](
val contentType: String,
val json: JValue
) extends Serializable {
override def toString: String =
s"ObjectEvent($level, $message, $channelName, $execId, $contentType, $json)"
}
object ObjectEvent {