Skip to content

Commit

Permalink
Shorten generation logs in sbt
Browse files Browse the repository at this point in the history
Fixes #370.
  • Loading branch information
jvican committed Mar 27, 2018
1 parent cef2242 commit c49c029
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,9 @@ object PluginImplementation {
testFrameworks, javaHome, javaOptions, allScalaJars, tmp)
sbt.IO.createDirectory(bloopConfigDir)
config.writeTo(outFile)
logger.success(s"Bloop wrote the configuration of project '$projectName' to '$outFile'.")
logger.debug(s"Bloop wrote the configuration of project '$projectName' to '$outFile'.")
val relativeConfigPath = outFile.relativeTo(baseDirectory).getOrElse(outFile)
logger.success(s"Generated $relativeConfigPath")
// format: ON
}

Expand Down

0 comments on commit c49c029

Please sign in to comment.