mirror of https://github.com/sbt/sbt.git
include the full body in debug message
This commit is contained in:
parent
cd9f0d2711
commit
f13465246c
|
|
@ -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") }
|
||||
)
|
||||
})
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue