public interface LoggerInterface
Modifier and Type | Method and Description |
---|---|
void |
debug(String txt)
Writes a log at DEBUG level.
|
void |
error(String txt)
Writes a log at ERROR level.
|
void |
errorEx(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 |
fatalEx(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 |
warnEx(String txt,
Throwable e)
Writes a log at WARN level with detail on exception.
|
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 warnEx(String txt, Throwable e)
txt
- String to write.e
- Exception.void error(String txt)
txt
- String to write.void errorEx(String txt, Throwable e)
txt
- String to write.e
- Exception.void fatal(String txt)
txt
- String to write.