Interface ILogger
-
- All Known Implementing Classes:
DefaultLogger
public interface ILogger
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddebug(CharSequence content)voiddebug(CharSequence content, Throwable error)voiddebug(String format, Object... args)voiddebug(Throwable error)voiderror(CharSequence content)voiderror(CharSequence content, Throwable error)voiderror(String format, Object... args)voiderror(Throwable error)voidinfo(CharSequence content)voidinfo(CharSequence content, Throwable error)voidinfo(String format, Object... args)voidinfo(Throwable error)booleanisDebugEnabled()booleanisErrorEnabled()booleanisInfoEnabled()booleanisWarnEnabled()voidwarn(CharSequence content)voidwarn(CharSequence content, Throwable error)voidwarn(String format, Object... args)voidwarn(Throwable error)
-
-
-
Method Detail
-
debug
void debug(CharSequence content)
-
debug
void debug(CharSequence content, Throwable error)
-
debug
void debug(Throwable error)
-
error
void error(CharSequence content)
-
error
void error(CharSequence content, Throwable error)
-
error
void error(Throwable error)
-
info
void info(CharSequence content)
-
info
void info(CharSequence content, Throwable error)
-
info
void info(Throwable error)
-
isDebugEnabled
boolean isDebugEnabled()
-
isErrorEnabled
boolean isErrorEnabled()
-
isInfoEnabled
boolean isInfoEnabled()
-
isWarnEnabled
boolean isWarnEnabled()
-
warn
void warn(CharSequence content)
-
warn
void warn(CharSequence content, Throwable error)
-
warn
void warn(Throwable error)
-
-