Skip to content

Commit

Permalink
chore: Remove verbose option otherwise it's always verbose
Browse files Browse the repository at this point in the history
It seems because we add an option to log verbose option to BSP, now it's always doing it, since verbose is specified at the start. I changed that in order to be able to specify verbose on demand for compile.
  • Loading branch information
tgodzik committed Jul 17, 2023
1 parent 2fe11bf commit cef1f25
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ final class BspBridge(
bspServerStatus = Some {
bspCmd.mkString(" ") -> {
// Make it verbose so that bsp preparation logs are emitted
val args = bspCmd ++ bloopAdditionalArgs ++ List("--verbose")
val args = bspCmd ++ bloopAdditionalArgs
StatusCommand(cli.run(args.toArray), "")
}
}
Expand Down

0 comments on commit cef1f25

Please sign in to comment.