public interface LoggingHandler
Modifier and Type | Interface and Description |
---|---|
static class |
LoggingHandler.Levels |
Modifier and Type | Method and Description |
---|---|
void |
logDebug(java.lang.String component,
java.lang.String message,
java.lang.Throwable exception,
java.lang.Object... args)
Log an debug message.
|
void |
logError(java.lang.String component,
java.lang.String message,
java.lang.Throwable exception,
java.lang.Object... args)
Log an error message.
|
void |
logInfo(java.lang.String component,
java.lang.String message,
java.lang.Throwable exception,
java.lang.Object... args)
Log an info message.
|
void |
logWarning(java.lang.String component,
java.lang.String message,
java.lang.Throwable exception,
java.lang.Object... args)
Log an warning message.
|
void logDebug(java.lang.String component, java.lang.String message, java.lang.Throwable exception, java.lang.Object... args)
args
are provided the message will be processed as a format using the
standard Formatter
.component
- The component identifier, not null
message
- The log message or format, not null
cause
- The cause, may be null
args
- The optional formatter argumentsvoid logInfo(java.lang.String component, java.lang.String message, java.lang.Throwable exception, java.lang.Object... args)
args
are provided the message will be processed as a format using the
standard Formatter
.component
- The component identifier, not null
message
- The log message or format, not null
cause
- The cause, may be null
args
- The optional formatter argumentsvoid logWarning(java.lang.String component, java.lang.String message, java.lang.Throwable exception, java.lang.Object... args)
args
are provided the message will be processed as a format using the
standard Formatter
.component
- The component identifier, not null
message
- The log message or format, not null
cause
- The cause, may be null
args
- The optional formatter argumentsvoid logError(java.lang.String component, java.lang.String message, java.lang.Throwable exception, java.lang.Object... args)
args
are provided the message will be processed as a format using the
standard Formatter
.component
- The component identifier, not null
message
- The log message or format, not null
cause
- The cause, may be null
args
- The optional formatter arguments