Interface Log
- All Known Implementing Classes:
GrouperClientLog
,Jdk13LumberjackLogger
,Jdk14Logger
,NoOpLog
,SimpleLog
A simple logging interface abstracting logging APIs. In order to be
instantiated successfully by LogFactory
, classes that implement
this interface must have a constructor that takes a single String
parameter representing the "name" of this Log.
The six logging levels used by Log
are (in order):
- trace (the least serious)
- debug
- info
- warn
- error
- fatal (the most serious)
Performance is often a logging concern. By examining the appropriate property, a component can avoid expensive operations (producing information to be logged).
For example,
if (log.isDebugEnabled()) {
... do something expensive ...
log.debug(theResult);
}
Configuration of the underlying logging system will generally be done external to the Logging APIs, through whatever mechanism is supported by that system.
- Version:
- $Id: Log.java,v 1.1 2008-11-30 10:57:27 mchyzer Exp $
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Log a message with debug log level.void
Log an error with debug log level.void
Log a message with error log level.void
Log an error with error log level.void
Log a message with fatal log level.void
Log an error with fatal log level.void
Log a message with info log level.void
Log an error with info log level.boolean
Is debug logging currently enabled?boolean
Is error logging currently enabled?boolean
Is fatal logging currently enabled?boolean
Is info logging currently enabled?boolean
Is trace logging currently enabled?boolean
Is warn logging currently enabled?void
Log a message with trace log level.void
Log an error with trace log level.void
Log a message with warn log level.void
Log an error 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,
String
concatenation) 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,
String
concatenation) 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,
String
concatenation) 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,
String
concatenation) 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,
String
concatenation) 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,
String
concatenation) 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
-