Add debug log on unhandled notification

This commit is contained in:
Eugene Yokota 2017-11-29 00:51:16 -05:00
parent c689821383
commit e4dd090d0c
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ private[sbt] trait LanguageServerProtocol extends CommandChannel {
notification.method match {
case "textDocument/didSave" =>
append(Exec(";compile; collectAnalyses", None, Some(CommandSource(name))))
case _ => ()
case u => log.debug(s"Unhandled notification received: $u")
}
}