http://bugzilla.slf4j.org/show_bug.cgi?id=74





------- Comment #2 from [EMAIL PROTECTED]  2008-02-26 19:01 -------
Level getLevel()
{
  return slf4jLogger.isTraceEnabled() ? Level.TRACE :
    slf4jLogger.isDebugEnabled() ? Level.DEBUG :
    slf4jLogger.isInfoEnabled() ? Level.INFO :
    slf4jLogger.isWarnEnabled() ? Level.WARN : Level.ERROR;
}

That's all it takes and it helps complete the wrapper.

Likewise, adding:

void setLevel(Level level) {}

wouldn't cause any harm either.


-- 
Configure bugmail: http://bugzilla.slf4j.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
_______________________________________________
dev mailing list
[email protected]
http://www.slf4j.org/mailman/listinfo/dev

Reply via email to