1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 08:27:12 -07:00

Better log message.

This commit is contained in:
Cedric Beust 2017-04-27 10:57:51 -07:00
parent b937aa6ad8
commit 18653c4da1

View file

@ -83,7 +83,7 @@ class JavaCompiler @Inject constructor(val jvmCompiler: JvmCompiler, val kobaltL
val pb = ProcessBuilder(executable.absolutePath, "@" + KFiles.fixSlashes(atFile)) val pb = ProcessBuilder(executable.absolutePath, "@" + KFiles.fixSlashes(atFile))
pb.inheritIO() pb.inheritIO()
logk(1, " Java compiling " + Strings.pluralizeAll(info.sourceFiles.size, "file")) logk(1, " Java compiling " + Strings.pluralizeAll(info.sourceFiles.size, "file"))
logk(2, " Java compiling file: " + KFiles.fixSlashes(atFile)) logk(2, " Java compiling using file: " + KFiles.fixSlashes(atFile))
command = allArgs.joinToString(" ") + " " + info.sourceFiles.joinToString(" ") command = allArgs.joinToString(" ") + " " + info.sourceFiles.joinToString(" ")
val process = pb.start() val process = pb.start()