| Priority | P5 |
|---|---|
| Bug ID | 315 |
| Assignee | slf4j-dev@qos.ch |
| Summary | logging message and throwable into wrong log level when using debug |
| Severity | normal |
| Classification | Unclassified |
| OS | Mac OS X 10.3 |
| Reporter | kalle.karkkainen+slf4j@futuremark.com |
| Hardware | All |
| Status | NEW |
| Version | 1.7.x |
| Component | slf4j-android |
| Product | SLF4J |
AndroidLoggingAdapter.java [262-264]:
public void debug(String msg, Throwable t) {
log(Log.VERBOSE, msg, t);
}
Should probably be:
public void debug(String msg, Throwable t) {
log(Log.DEBUG, msg, t);
}