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() }