Skip to content

Commit 6089c12

Browse files
authored
Merge pull request #700 from alexarchambault/tweak-bloop-messages
Tweak Bloop launch-related messages
2 parents 3269a22 + db34305 commit 6089c12

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

modules/bloop-rifle/src/main/scala/scala/build/bloop/BloopServer.scala

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ object BloopServer {
6969
): BloopServerRuntimeInfo = {
7070
val workdir = new File(".").getCanonicalFile.toPath
7171
def startBloop(bloopVersion: String, bloopJava: String) = {
72-
logger.info(s"Starting Bloop $bloopVersion at ${config.address.render} using JVM $bloopJava")
72+
logger.info("Starting compilation server")
73+
logger.debug(s"Starting Bloop $bloopVersion at ${config.address.render} using JVM $bloopJava")
7374
val fut = BloopRifle.startServer(
7475
config,
7576
startServerChecksPool,
@@ -104,7 +105,7 @@ object BloopServer {
104105
val isOk = bloopVersionIsOk && bloopJvmIsOk
105106

106107
if (!isOk) {
107-
logger.info(s"Bloop daemon status: ${bloopInfo.fold(_.message, _.message)}")
108+
logger.debug(s"Bloop daemon status: ${bloopInfo.fold(_.message, _.message)}")
108109
if (isRunning) exitBloop()
109110
startBloop(expectedBloopVersion.raw, javaPath)
110111
}

0 commit comments

Comments
 (0)