public interface ILogger
| Modifier and Type | Method and Description |
|---|---|
void |
addMessage(File file,
int line,
int pos,
String message,
Throwable e) |
void |
debug(String message)
Log a message at the DEBUG level.
|
void |
debug(String message,
Throwable throwable)
Log a message at the DEBUG level.
|
void |
error(String message)
Log a message at the ERROR level.
|
void |
error(String message,
Throwable throwable)
Log a message at the ERROR level.
|
void |
info(String message)
Log a message at the INFO level.
|
void |
info(String message,
Throwable throwable)
Log a message at the INFO level.
|
void |
warn(String message)
Log a message at the WARN level.
|
void |
warn(String message,
Throwable throwable)
Log a message at the WARN level.
|
void debug(String message)
message - the message string to be loggedvoid debug(String message, Throwable throwable)
message - the message string to be loggedthrowable - the exception (throwable) to logvoid info(String message)
message - the message string to be loggedvoid info(String message, Throwable throwable)
message - the message string to be loggedthrowable - the exception (throwable) to logvoid warn(String message)
message - the message string to be loggedvoid warn(String message, Throwable throwable)
message - the message string to be loggedthrowable - the exception (throwable) to logvoid error(String message)
message - the message string to be loggedCopyright © 2014. All Rights Reserved.