From f5d7c384a49e9d064b1dcc02ea3d0f9b68600d22 Mon Sep 17 00:00:00 2001 From: Dale Wijnand Date: Tue, 7 Mar 2017 13:01:44 +0000 Subject: [PATCH] Switch from log.info and !!! to log.warn Good idea, Lars. Thanks. --- main/src/main/scala/sbt/MainLoop.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/src/main/scala/sbt/MainLoop.scala b/main/src/main/scala/sbt/MainLoop.scala index 5b45055e1..e3c1c7142 100644 --- a/main/src/main/scala/sbt/MainLoop.scala +++ b/main/src/main/scala/sbt/MainLoop.scala @@ -75,7 +75,7 @@ object MainLoop { def isInteractive = System.console() != null def hasShell = state.remainingCommands contains "shell" if (isInteractive && !hasShell) - state.log info "!!! Executing in batch mode !!! For better performance, hit [ENTER] to remain in the sbt shell" + state.log warn "Executing in batch mode; for better performance, hit [ENTER] to remain in the sbt shell" try run(loggedState) finally out.close() }