Package gw.util
Interface ILogger
-
- All Known Implementing Classes:
SystemOutLogger
public interface ILoggerGosu logger-independent logging system.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddebug(Object o)voiddebug(Object o, Throwable throwable)voiderror(Object o)voiderror(Object o, Throwable throwable)voidfatal(Object o)voidfatal(Object o, Throwable throwable)StringgetName()voidinfo(Object o)voidinfo(Object o, Throwable throwable)booleanisDebugEnabled()booleanisInfoEnabled()booleanisTraceEnabled()voidtrace(Object o)voidtrace(Object o, Throwable throwable)voidwarn(Object o)voidwarn(Object o, Throwable throwable)
-
-
-
Method Detail
-
getName
String getName()
-
debug
void debug(Object o)
-
isDebugEnabled
boolean isDebugEnabled()
-
trace
void trace(Object o)
-
isTraceEnabled
boolean isTraceEnabled()
-
info
void info(Object o)
-
isInfoEnabled
boolean isInfoEnabled()
-
warn
void warn(Object o)
-
error
void error(Object o)
-
fatal
void fatal(Object o)
-
-