We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82a815f commit 3cc5a42Copy full SHA for 3cc5a42
frontend/src/main/scala/bloop/exec/Forker.scala
@@ -200,6 +200,11 @@ object Forker {
200
val envMap = builder.environment()
201
envMap.putAll(env.asJava)
202
builder.redirectErrorStream(false)
203
+ logger.info("Forking process:")
204
+ logger.info("- working directory: " + cwd.map(_.toString).getOrElse("null"))
205
+ logger.info("- command line: " + cmd.mkString(" "))
206
+ val envFormatted = env.map { case (key, value) => s" $key=$value" }.mkString("\n")
207
+ logger.info("- environment variables:\n" + envFormatted)
208
builder.start()
209
}.flatMap { ps =>
210
val writeIn = writeToStdIn(ps.getOutputStream)
0 commit comments