Add note on setting loglevel

This commit is contained in:
Taro L. Saito 2015-05-15 11:28:25 +09:00
parent c8842a0603
commit 272604b3b0
1 changed files with 6 additions and 0 deletions

View File

@ -168,6 +168,12 @@ snappy-java uses sbt (simple build tool for Scala) as a build tool. Here is a si
> findbugs # Produce findbugs report in target/findbugs
> jacoco:cover # Report the code coverage of tests to target/jacoco folder
If you need to see detailed debug messages, launch sbt with `-Dloglevel=debug` option:
```
$ ./sbt -Dloglevel=debug
```
For the details of sbt usage, see my blog post: [Building Java Projects with sbt](http://xerial.org/blog/2014/03/24/sbt/)
## Miscellaneous Notes