boolean |
AbstractInternalLogger.isEnabled(InternalLogLevel level) |
|
boolean |
InternalLogger.isEnabled(InternalLogLevel level) |
Is the logger instance enabled for the specified level ?
|
void |
AbstractInternalLogger.log(InternalLogLevel level,
java.lang.String msg) |
|
void |
AbstractInternalLogger.log(InternalLogLevel level,
java.lang.String format,
java.lang.Object arg) |
|
void |
AbstractInternalLogger.log(InternalLogLevel level,
java.lang.String format,
java.lang.Object... arguments) |
|
void |
AbstractInternalLogger.log(InternalLogLevel level,
java.lang.String format,
java.lang.Object argA,
java.lang.Object argB) |
|
void |
AbstractInternalLogger.log(InternalLogLevel level,
java.lang.String msg,
java.lang.Throwable cause) |
|
void |
AbstractInternalLogger.log(InternalLogLevel level,
java.lang.Throwable cause) |
|
void |
InternalLogger.log(InternalLogLevel level,
java.lang.String msg) |
Log a message at the specified level .
|
void |
InternalLogger.log(InternalLogLevel level,
java.lang.String format,
java.lang.Object arg) |
Log a message at the specified level according to the specified format
and argument.
|
void |
InternalLogger.log(InternalLogLevel level,
java.lang.String format,
java.lang.Object... arguments) |
Log a message at the specified level according to the specified format
and arguments.
|
void |
InternalLogger.log(InternalLogLevel level,
java.lang.String format,
java.lang.Object argA,
java.lang.Object argB) |
Log a message at the specified level according to the specified format
and arguments.
|
void |
InternalLogger.log(InternalLogLevel level,
java.lang.String msg,
java.lang.Throwable t) |
Log an exception (throwable) at the specified level with an
accompanying message.
|
void |
InternalLogger.log(InternalLogLevel level,
java.lang.Throwable t) |
Log an exception (throwable) at the specified level .
|