http://bugzilla.slf4j.org/show_bug.cgi?id=315
Priority: P5
Bug ID: 315
Assignee: [email protected]
Summary: logging message and throwable into wrong log level
when using debug
Severity: normal
Classification: Unclassified
OS: Mac OS X 10.3
Reporter: [email protected]
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);
}
--
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
slf4j-dev mailing list
[email protected]
http://mailman.qos.ch/mailman/listinfo/slf4j-dev