Skip to content

Commit

Permalink
Merge pull request #151 from tgodzik/switch-order
Browse files Browse the repository at this point in the history
improvement: First show dowloading message and the starting
  • Loading branch information
tgodzik authored Aug 18, 2023
2 parents bb804b7 + 438c71b commit 5220768
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 4 additions & 0 deletions bloop-rifle/src/bloop/rifle/BloopRifle.scala
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ object BloopRifle {
config.classPath(version) match {
case Left(ex) => Future.failed(new Exception("Error getting Bloop class path", ex))
case Right((cp, isScalaCliBloop)) =>
logger.info("Starting compilation server")
logger.debug(
s"Starting Bloop $version at ${config.address.render} using JVM $bloopJava"
)
object IntValue {
def unapply(s: String): Option[Int] =
// no String.toIntOption in Scala 2.12.x
Expand Down
2 changes: 0 additions & 2 deletions bloop-rifle/src/bloop/rifle/BloopServer.scala
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,6 @@ object BloopServer {
): BloopRifle.BloopServerRuntimeInfo = {
val workdir = new File(".").getCanonicalFile.toPath
def startBloop(bloopVersion: String, bloopJava: String) = {
logger.info("Starting compilation server")
logger.debug(s"Starting Bloop $bloopVersion at ${config.address.render} using JVM $bloopJava")
val fut = BloopRifle.startServer(
config,
startServerChecksPool,
Expand Down

0 comments on commit 5220768

Please sign in to comment.