From a1ec2635628eadc6761446e0eb66a4f8abdbc985 Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Wed, 4 Nov 2015 22:10:22 -0800 Subject: [PATCH] Log. --- src/main/kotlin/com/beust/kobalt/misc/RunCommand.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/com/beust/kobalt/misc/RunCommand.kt b/src/main/kotlin/com/beust/kobalt/misc/RunCommand.kt index 284a4e5d..790ddc65 100644 --- a/src/main/kotlin/com/beust/kobalt/misc/RunCommand.kt +++ b/src/main/kotlin/com/beust/kobalt/misc/RunCommand.kt @@ -19,7 +19,7 @@ open class RunCommand(val command: String) { val pb = ProcessBuilder(allArgs) pb.directory(directory) - log(1, "Running command: " + allArgs.joinToString(" ")) + log(2, "Running command: " + allArgs.joinToString(" ")) val process = pb.start() pb.environment().put("ANDROID_HOME", "/Users/beust/android/adt-bundle-mac-x86_64-20140702/sdk") val errorCode = process.waitFor()