Interface Log
- All Known Implementing Classes:
LocationAwareSLF4JExoLog,SimpleExoLog,SLF4JExoLog
- Version:
- $Id: Log.java 34394 2009-07-23 09:23:31Z dkatayev $
- Author:
- Dmytro Katayev Jun 26, 2009
-
Method Summary
Modifier and TypeMethodDescriptionvoidLog a message with debug log level.voidLog an error with debug log level.voidLog an error with debug log level.voidLog a message with error log level.voidLog an error with error log level.voidLog a message with error log level.voidLog a message with fatal log level.voidLog an error with fatal log level.voidLog a message with fatal log level.voidLog a message with info log level.voidLog an error with info log level.voidLog an error with info log level.booleanIs debug logging currently enabled?booleanIs error logging currently enabled?booleanIs fatal logging currently enabled?booleanIs info logging currently enabled?booleanIs trace logging currently enabled?booleanIs warn logging currently enabled?voidLog a message with trace log level.voidLog an error with trace log level.voidLog an error with trace log level.voidLog a message with warn log level.voidLog an error with warn log level.voidLog a message with warn log level.
-
Method Details
-
isDebugEnabled
boolean isDebugEnabled()Is debug logging currently enabled?
Call this method to prevent having to perform expensive operations (for example,
Stringconcatenation) when the log level is more than debug.- Returns:
- true if debug is enabled in the underlying logger.
-
isErrorEnabled
boolean isErrorEnabled()Is error logging currently enabled?
Call this method to prevent having to perform expensive operations (for example,
Stringconcatenation) when the log level is more than error.- Returns:
- true if error is enabled in the underlying logger.
-
isFatalEnabled
boolean isFatalEnabled()Is fatal logging currently enabled?
Call this method to prevent having to perform expensive operations (for example,
Stringconcatenation) when the log level is more than fatal.- Returns:
- true if fatal is enabled in the underlying logger.
-
isInfoEnabled
boolean isInfoEnabled()Is info logging currently enabled?
Call this method to prevent having to perform expensive operations (for example,
Stringconcatenation) when the log level is more than info.- Returns:
- true if info is enabled in the underlying logger.
-
isTraceEnabled
boolean isTraceEnabled()Is trace logging currently enabled?
Call this method to prevent having to perform expensive operations (for example,
Stringconcatenation) when the log level is more than trace.- Returns:
- true if trace is enabled in the underlying logger.
-
isWarnEnabled
boolean isWarnEnabled()Is warn logging currently enabled?
Call this method to prevent having to perform expensive operations (for example,
Stringconcatenation) when the log level is more than warn.- Returns:
- true if warn is enabled in the underlying logger.
-
trace
Log a message with trace log level.
- Parameters:
message- log this message
-
trace
Log an error with trace log level.
- Parameters:
message- log this messaget- log this cause
-
debug
Log a message with debug log level.
- Parameters:
message- log this message
-
debug
Log an error with debug log level.
- Parameters:
message- log this messaget- log this cause
-
info
Log a message with info log level.
- Parameters:
message- log this message
-
info
Log an error with info log level.
- Parameters:
message- log this messaget- log this cause
-
warn
Log a message with warn log level.
- Parameters:
message- log this message
-
warn
Log an error with warn log level.
- Parameters:
message- log this messaget- log this cause
-
error
Log a message with error log level.
- Parameters:
message- log this message
-
error
Log an error with error log level.
- Parameters:
message- log this messaget- log this cause
-
fatal
Log a message with fatal log level.
- Parameters:
message- log this message
-
fatal
Log an error with fatal log level.
- Parameters:
message- log this messaget- log this cause
-
trace
Log an error with trace log level.
- Parameters:
format-
Stringformat to represent log message. Sequence of '{}' is used to represent an anchor which will be replaced by string representation of objects in argArrayargArray-
array of arguments to add to log message includingThrowable,Stringor any otherObjectfor which string representation will be used
-
debug
Log an error with debug log level.
- Parameters:
format-
Stringformat to represent log message. Sequence of '{}' is used to represent an anchor which will be replaced by string representation of objects in argArrayargArray-
array of arguments to add to log message includingThrowable,Stringor any otherObjectfor which string representation will be used
-
info
Log an error with info log level.
- Parameters:
format-
Stringformat to represent log message. Sequence of '{}' is used to represent an anchor which will be replaced by string representation of objects in argArrayargArray-
array of arguments to add to log message includingThrowable,Stringor any otherObjectfor which string representation will be used
-
warn
Log a message with warn log level.
- Parameters:
format-
Stringformat to represent log message. Sequence of '{}' is used to represent an anchor which will be replaced by string representation of objects in argArrayargArray-
array of arguments to add to log message includingThrowable,Stringor any otherObjectfor which string representation will be used
-
error
Log a message with error log level.
- Parameters:
format-
Stringformat to represent log message. Sequence of '{}' is used to represent an anchor which will be replaced by string representation of objects in argArrayargArray-
array of arguments to add to log message includingThrowable,Stringor any otherObjectfor which string representation will be used
-
fatal
Log a message with fatal log level.
- Parameters:
format-
Stringformat to represent log message. Sequence of '{}' is used to represent an anchor which will be replaced by string representation of objects in argArrayargArray-
array of arguments to add to log message includingThrowable,Stringor any otherObjectfor which string representation will be used
-