From 2b5a0889118cb718158744c085befe99c667c3be Mon Sep 17 00:00:00 2001 From: Mark Harrah Date: Mon, 27 May 2013 19:12:39 -0400 Subject: [PATCH] sbt.log.format should not be set by sbt, since that will not respect noformat --- launch/src/main/scala/xsbt/boot/Boot.scala | 5 ----- 1 file changed, 5 deletions(-) diff --git a/launch/src/main/scala/xsbt/boot/Boot.scala b/launch/src/main/scala/xsbt/boot/Boot.scala index 1e43269f6..ed60e0027 100644 --- a/launch/src/main/scala/xsbt/boot/Boot.scala +++ b/launch/src/main/scala/xsbt/boot/Boot.scala @@ -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")