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

Fix logs.

This commit is contained in:
Cedric Beust 2015-11-02 21:38:22 -08:00
parent 52a3b6e542
commit a308564f77
2 changed files with 1 additions and 2 deletions

View file

@ -33,7 +33,6 @@ class JavaCompiler @Inject constructor(val jvmCompiler: JvmCompiler) {
pb.directory(info.outputDir) pb.directory(info.outputDir)
pb.inheritIO() pb.inheritIO()
val line = allArgs.joinToString(" ") val line = allArgs.joinToString(" ")
log(1, " Compiling ${info.sourceFiles.size} files with classpath size " + info.dependencies.size)
log(2, " Compiling $line") log(2, " Compiling $line")
val process = pb.start() val process = pb.start()
val errorCode = process.waitFor() val errorCode = process.waitFor()