- getAttribute(String) - Method in class org.apache.commons.logging.LogFactory
-
Return the configuration attribute with the specified name (if any),
or null
if there is no such attribute.
- getAttributeNames() - Method in class org.apache.commons.logging.LogFactory
-
Return an array containing the names of all currently defined
configuration attributes.
- getCause() - Method in exception org.apache.commons.logging.LogConfigurationException
-
Return the underlying cause of this exception (if any).
- getClassLoader(Class) - Static method in class org.apache.commons.logging.LogFactory
-
Safely get access to the classloader for the specified class.
- getContextClassLoader() - Static method in class org.apache.commons.logging.LogFactory
-
Returns the current context classloader.
- getFactory() - Static method in class org.apache.commons.logging.LogFactory
-
Construct (if necessary) and return a LogFactory
instance, using the following ordered lookup procedure to determine
the name of the implementation class to be loaded.
- getInstance(Class) - Method in class org.apache.commons.logging.LogFactory
-
Convenience method to derive a name from the specified class and
call getInstance(String)
with it.
- getInstance(String) - Method in class org.apache.commons.logging.LogFactory
-
Construct (if necessary) and return a Log
instance,
using the factory's current set of configuration attributes.
- getLevel() - Method in class org.apache.commons.logging.impl.SimpleLog
-
Get org.apache.commons.logging level.
- getLog(Class) - Static method in class org.apache.commons.logging.LogFactory
-
Convenience method to return a named logger, without the application
having to care about factories.
- getLog(String) - Static method in class org.apache.commons.logging.LogFactory
-
Convenience method to return a named logger, without the application
having to care about factories.
- info(Object) - Method in class org.apache.commons.logging.impl.NoOpLog
-
Do nothing
- info(Object, Throwable) - Method in class org.apache.commons.logging.impl.NoOpLog
-
Do nothing
- info(Object) - Method in class org.apache.commons.logging.impl.SimpleLog
-
Logs a message with org.apache.commons.org.apache.commons.logging.impl.SimpleLog.LOG_LEVEL_INFO
.
- info(Object, Throwable) - Method in class org.apache.commons.logging.impl.SimpleLog
-
Logs a message with org.apache.commons.org.apache.commons.logging.impl.SimpleLog.LOG_LEVEL_INFO
.
- info(Object) - Method in interface org.apache.commons.logging.Log
-
Logs a message with info log level.
- info(Object, Throwable) - Method in interface org.apache.commons.logging.Log
-
Logs an error with info log level.
- isDebugEnabled() - Method in class org.apache.commons.logging.impl.NoOpLog
-
Debug is never enabled.
- isDebugEnabled() - Method in class org.apache.commons.logging.impl.SimpleLog
-
Are debug messages currently enabled?
- isDebugEnabled() - Method in interface org.apache.commons.logging.Log
-
Is debug org.apache.commons.logging currently enabled?
- isDiagnosticsEnabled() - Static method in class org.apache.commons.logging.LogFactory
-
Indicates true if the user has enabled internal org.apache.commons.logging.
- isErrorEnabled() - Method in class org.apache.commons.logging.impl.NoOpLog
-
Error is never enabled.
- isErrorEnabled() - Method in class org.apache.commons.logging.impl.SimpleLog
-
Are error messages currently enabled?
- isErrorEnabled() - Method in interface org.apache.commons.logging.Log
-
Is error org.apache.commons.logging currently enabled?
- isFatalEnabled() - Method in class org.apache.commons.logging.impl.NoOpLog
-
Fatal is never enabled.
- isFatalEnabled() - Method in class org.apache.commons.logging.impl.SimpleLog
-
Are fatal messages currently enabled?
- isFatalEnabled() - Method in interface org.apache.commons.logging.Log
-
Is fatal org.apache.commons.logging currently enabled?
- isInfoEnabled() - Method in class org.apache.commons.logging.impl.NoOpLog
-
Info is never enabled.
- isInfoEnabled() - Method in class org.apache.commons.logging.impl.SimpleLog
-
Are info messages currently enabled?
- isInfoEnabled() - Method in interface org.apache.commons.logging.Log
-
Is info org.apache.commons.logging currently enabled?
- isLevelEnabled(int) - Method in class org.apache.commons.logging.impl.SimpleLog
-
Is the given log level currently enabled?
- isTraceEnabled() - Method in class org.apache.commons.logging.impl.NoOpLog
-
Trace is never enabled.
- isTraceEnabled() - Method in class org.apache.commons.logging.impl.SimpleLog
-
Are trace messages currently enabled?
- isTraceEnabled() - Method in interface org.apache.commons.logging.Log
-
Is trace org.apache.commons.logging currently enabled?
- isWarnEnabled() - Method in class org.apache.commons.logging.impl.NoOpLog
-
Warn is never enabled.
- isWarnEnabled() - Method in class org.apache.commons.logging.impl.SimpleLog
-
Are warn messages currently enabled?
- isWarnEnabled() - Method in interface org.apache.commons.logging.Log
-
Is warn org.apache.commons.logging currently enabled?
- log(int, Object, Throwable) - Method in class org.apache.commons.logging.impl.SimpleLog
-
Do the actual org.apache.commons.logging.
- Log - Interface in org.apache.commons.logging
-
A simple org.apache.commons.logging interface abstracting org.apache.commons.logging APIs.
- LOG_LEVEL_ALL - Static variable in class org.apache.commons.logging.impl.SimpleLog
-
Enable all org.apache.commons.logging levels
- LOG_LEVEL_DEBUG - Static variable in class org.apache.commons.logging.impl.SimpleLog
-
"Debug" level org.apache.commons.logging.
- LOG_LEVEL_ERROR - Static variable in class org.apache.commons.logging.impl.SimpleLog
-
"Error" level org.apache.commons.logging.
- LOG_LEVEL_FATAL - Static variable in class org.apache.commons.logging.impl.SimpleLog
-
"Fatal" level org.apache.commons.logging.
- LOG_LEVEL_INFO - Static variable in class org.apache.commons.logging.impl.SimpleLog
-
"Info" level org.apache.commons.logging.
- LOG_LEVEL_OFF - Static variable in class org.apache.commons.logging.impl.SimpleLog
-
Enable no org.apache.commons.logging levels
- LOG_LEVEL_TRACE - Static variable in class org.apache.commons.logging.impl.SimpleLog
-
"Trace" level org.apache.commons.logging.
- LOG_LEVEL_WARN - Static variable in class org.apache.commons.logging.impl.SimpleLog
-
"Warn" level org.apache.commons.logging.
- LogConfigurationException - Exception in org.apache.commons.logging
-
An exception that is thrown only if a suitable LogFactory
or Log
instance cannot be created by the corresponding
factory methods.
- LogConfigurationException() - Constructor for exception org.apache.commons.logging.LogConfigurationException
-
Construct a new exception with null
as its detail message.
- LogConfigurationException(String) - Constructor for exception org.apache.commons.logging.LogConfigurationException
-
Construct a new exception with the specified detail message.
- LogConfigurationException(Throwable) - Constructor for exception org.apache.commons.logging.LogConfigurationException
-
Construct a new exception with the specified cause and a derived
detail message.
- LogConfigurationException(String, Throwable) - Constructor for exception org.apache.commons.logging.LogConfigurationException
-
Construct a new exception with the specified detail message and cause.
- LogFactory - Class in org.apache.commons.logging
-
Note this implementation only works with JBoss Log Manager.
- LogFactory() - Constructor for class org.apache.commons.logging.LogFactory
-
Protected constructor that is not available for public use.
- logName - Variable in class org.apache.commons.logging.impl.SimpleLog
-
The name of this simple log instance
- logRawDiagnostic(String) - Static method in class org.apache.commons.logging.LogFactory
-
Write the specified message to the internal org.apache.commons.logging destination.