|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface LoggerInterface
Interface used for the logging mechanism.
Method Summary | |
---|---|
void |
debug(String txt)
Writes a log at DEBUG level. |
void |
error(String txt)
Writes a log at ERROR level. |
void |
error(String txt,
Throwable e)
Writes a log at ERROR level with detail on exception. |
void |
fatal(String txt)
Writes a log at FATAL level. |
void |
fatal(String txt,
Throwable e)
Writes a log at ERROR level with detail on exception. |
void |
info(String txt)
Writes a log at INFO level. |
void |
warn(String txt)
Writes a log at WARN level. |
void |
warn(String txt,
Throwable e)
Writes a log at WARN level with detail on exception. |
Method Detail |
---|
void debug(String txt)
txt
- String to write.void info(String txt)
txt
- String to write.void warn(String txt)
txt
- String to write.void warn(String txt, Throwable e)
txt
- String to write.e
- Exception.void error(String txt)
txt
- String to write.void error(String txt, Throwable e)
txt
- String to write.e
- Exception.void fatal(String txt)
txt
- String to write.void fatal(String txt, Throwable e)
txt
- String to write.e
- Exception.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |