include the full body in debug message

This commit is contained in:
Eugene Yokota 2018-03-09 18:01:10 -05:00
parent cd9f0d2711
commit f13465246c
1 changed files with 2 additions and 2 deletions

View File

@ -26,8 +26,8 @@ object ServerHandler {
lazy val fallback: ServerHandler = ServerHandler({ handler =>
ServerIntent(
{ case x => handler.log.debug(s"Unhandled notification received: ${x.method}") },
{ case x => handler.log.debug(s"Unhandled request received: ${x.method}") }
{ case x => handler.log.debug(s"Unhandled notification received: ${x.method}: $x") },
{ case x => handler.log.debug(s"Unhandled request received: ${x.method}: $x") }
)
})
}