[slf4j-dev] [Bug 315] New: logging message and throwable into wrong log level when using debug
bugzilla-daemon at qos.ch
bugzilla-daemon at qos.ch
Wed Mar 5 09:06:30 CET 2014
http://bugzilla.slf4j.org/show_bug.cgi?id=315
Priority: P5
Bug ID: 315
Assignee: slf4j-dev at 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 at 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);
}
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mailman.qos.ch/pipermail/slf4j-dev/attachments/20140305/40594a7c/attachment.html>
More information about the slf4j-dev
mailing list