From f13465246c382d5416acf732da2bfee2ed68b28c Mon Sep 17 00:00:00 2001 From: Eugene Yokota Date: Fri, 9 Mar 2018 18:01:10 -0500 Subject: [PATCH] include the full body in debug message --- main-command/src/main/scala/sbt/ServerHandler.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main-command/src/main/scala/sbt/ServerHandler.scala b/main-command/src/main/scala/sbt/ServerHandler.scala index 07fe8616e..ce9429c33 100644 --- a/main-command/src/main/scala/sbt/ServerHandler.scala +++ b/main-command/src/main/scala/sbt/ServerHandler.scala @@ -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") } ) }) }