Setting sbt log level at the command line
Posted on In QAsbt
‘s log level can be set by execute set logLevel := Level.Error
inside sbt.
How to set the sbt
log level at the command line?
Add --error
to sbt
for specify the logLevel to error:
sbt --error "your command"