diff --git a/main/src/main/scala/sbt/MainLoop.scala b/main/src/main/scala/sbt/MainLoop.scala index 5c6735148..80d18c986 100644 --- a/main/src/main/scala/sbt/MainLoop.scala +++ b/main/src/main/scala/sbt/MainLoop.scala @@ -75,7 +75,8 @@ object MainLoop { def isInteractive = System.console() != null def hasShell = state.remainingCommands contains "shell" if (isInteractive && !hasShell) { - state.log warn "BATCH MODE: for better performance hit [ENTER] to switch to interactive mode" + state.log warn "Executing in batch mode." + state.log warn " For better performance, hit [ENTER] to switch to interactive mode, or" state.log warn " consider launching sbt without any commands, or explicitly passing 'shell'" } try run(loggedState) finally out.close()