public interface Log
| Modifier and Type | Method and Description |
|---|---|
void |
debug(Object message)
Log a message with debug log level.
|
void |
debug(Object message,
Throwable t)
Log an error with debug log level.
|
void |
debug(String format,
Object... argArray)
Log an error with debug log level.
|
void |
error(Object message)
Log a message with error log level.
|
void |
error(Object message,
Throwable t)
Log an error with error log level.
|
void |
error(String format,
Object... argArray)
Log a message with error log level.
|
void |
fatal(Object message)
Log a message with fatal log level.
|
void |
fatal(Object message,
Throwable t)
Log an error with fatal log level.
|
void |
fatal(String format,
Object... argArray)
Log a message with fatal log level.
|
void |
info(Object message)
Log a message with info log level.
|
void |
info(Object message,
Throwable t)
Log an error with info log level.
|
void |
info(String format,
Object... argArray)
Log an error with info log level.
|
boolean |
isDebugEnabled()
Is debug logging currently enabled?
|
boolean |
isErrorEnabled()
Is error logging currently enabled?
|
boolean |
isFatalEnabled()
Is fatal logging currently enabled?
|
boolean |
isInfoEnabled()
Is info logging currently enabled?
|
boolean |
isTraceEnabled()
Is trace logging currently enabled?
|
boolean |
isWarnEnabled()
Is warn logging currently enabled?
|
void |
trace(Object message)
Log a message with trace log level.
|
void |
trace(Object message,
Throwable t)
Log an error with trace log level.
|
void |
trace(String format,
Object... argArray)
Log an error with trace log level.
|
void |
warn(Object message)
Log a message with warn log level.
|
void |
warn(Object message,
Throwable t)
Log an error with warn log level.
|
void |
warn(String format,
Object... argArray)
Log a message with warn log level.
|
boolean isDebugEnabled()
Is debug logging currently enabled?
Call this method to prevent having to perform expensive operations (for
example, String concatenation) when the log level is more than
debug.
boolean isErrorEnabled()
Is error logging currently enabled?
Call this method to prevent having to perform expensive operations (for
example, String concatenation) when the log level is more than
error.
boolean isFatalEnabled()
Is fatal logging currently enabled?
Call this method to prevent having to perform expensive operations (for
example, String concatenation) when the log level is more than
fatal.
boolean isInfoEnabled()
Is info logging currently enabled?
Call this method to prevent having to perform expensive operations (for
example, String concatenation) when the log level is more than
info.
boolean isTraceEnabled()
Is trace logging currently enabled?
Call this method to prevent having to perform expensive operations (for
example, String concatenation) when the log level is more than
trace.
boolean isWarnEnabled()
Is warn logging currently enabled?
Call this method to prevent having to perform expensive operations (for
example, String concatenation) when the log level is more than
warn.
void trace(Object message)
Log a message with trace log level.
message - log this messagevoid trace(Object message, Throwable t)
Log an error with trace log level.
message - log this messaget - log this causevoid debug(Object message)
Log a message with debug log level.
message - log this messagevoid debug(Object message, Throwable t)
Log an error with debug log level.
message - log this messaget - log this causevoid info(Object message)
Log a message with info log level.
message - log this messagevoid info(Object message, Throwable t)
Log an error with info log level.
message - log this messaget - log this causevoid warn(Object message)
Log a message with warn log level.
message - log this messagevoid warn(Object message, Throwable t)
Log an error with warn log level.
message - log this messaget - log this causevoid error(Object message)
Log a message with error log level.
message - log this messagevoid error(Object message, Throwable t)
Log an error with error log level.
message - log this messaget - log this causevoid fatal(Object message)
Log a message with fatal log level.
message - log this messagevoid fatal(Object message, Throwable t)
Log an error with fatal log level.
message - log this messaget - log this causevoid trace(String format, Object... argArray)
Log an error with trace log level.
format - String format to represent log message.
Sequence of '{}' is used to represent an anchor which will be replaced by
string representation of objects in argArrayargArray - Throwable, String
or any other Object for which string representation will be usedvoid debug(String format, Object... argArray)
Log an error with debug log level.
format - String format to represent log message.
Sequence of '{}' is used to represent an anchor which will be replaced by
string representation of objects in argArrayargArray - Throwable, String
or any other Object for which string representation will be usedvoid info(String format, Object... argArray)
Log an error with info log level.
format - String format to represent log message.
Sequence of '{}' is used to represent an anchor which will be replaced by
string representation of objects in argArrayargArray - Throwable, String
or any other Object for which string representation will be usedvoid warn(String format, Object... argArray)
Log a message with warn log level.
format - String format to represent log message.
Sequence of '{}' is used to represent an anchor which will be replaced by
string representation of objects in argArrayargArray - Throwable, String
or any other Object for which string representation will be usedvoid error(String format, Object... argArray)
Log a message with error log level.
format - String format to represent log message.
Sequence of '{}' is used to represent an anchor which will be replaced by
string representation of objects in argArrayargArray - Throwable, String
or any other Object for which string representation will be usedvoid fatal(String format, Object... argArray)
Log a message with fatal log level.
format - String format to represent log message.
Sequence of '{}' is used to represent an anchor which will be replaced by
string representation of objects in argArrayargArray - Throwable, String
or any other Object for which string representation will be usedCopyright © 2016 eXo Platform SAS. All Rights Reserved.