Switch from log.info and !!! to log.warn

Good idea, Lars. Thanks.
This commit is contained in:
Dale Wijnand 2017-03-07 13:01:44 +00:00
parent b53d8c4433
commit 019f92dc93
No known key found for this signature in database
GPG Key ID: 4F256E3D151DF5EF
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,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()
}