sbt.log.format should not be set by sbt, since that will not respect noformat

This commit is contained in:
Mark Harrah 2013-05-27 19:12:39 -04:00
parent bd65895b9e
commit 2b5a088911
1 changed files with 0 additions and 5 deletions

View File

@ -18,7 +18,6 @@ object Boot
System.setProperty("jline.shutdownhook", "false")
CheckProxy()
initJansi()
setLogFormat()
run(args)
}
}
@ -49,10 +48,6 @@ object Boot
private def exit(code: Int): Nothing =
System.exit(code).asInstanceOf[Nothing]
private[this] def setLogFormat() {
if(System.getProperty("sbt.log.format") eq null)
System.setProperty("sbt.log.format", "true")
}
private def initJansi() {
try {
val c = Class.forName("org.fusesource.jansi.AnsiConsole")