Controlling SBT Log Levels from the CLI and Configuration
The simplest approach is passing log level flags directly to sbt: sbt –error “compile” sbt –warn “clean compile” sbt –info “test” sbt –debug “publishLocal” Common log level flags: –error — errors only –warn — warnings and errors (default) –info — info, warnings, and errors –debug — verbose debugging output –trace — most verbose, rarely needed…
