Uses of Interface
org.apache.commons.logging.Log
-
Packages that use Log Package Description org.apache.commons.logging Simple wrapper API around multiple logging APIs.org.apache.commons.logging.impl Concrete implementations of commons-logging wrapper APIs. -
-
Uses of Log in org.apache.commons.logging
Methods in org.apache.commons.logging that return Log Modifier and Type Method Description abstract LogLogFactory. getInstance(java.lang.Class clazz)Convenience method to derive a name from the specified class and callgetInstance(String)with it.abstract LogLogFactory. getInstance(java.lang.String name)Construct (if necessary) and return aLoginstance, using the factory's current set of configuration attributes.static LogLogSource. getInstance(java.lang.Class clazz)Deprecated.Get aLoginstance by class.static LogLogSource. getInstance(java.lang.String name)Deprecated.Get aLoginstance by class name.static LogLogFactory. getLog(java.lang.Class clazz)Convenience method to return a named logger, without the application having to care about factories.static LogLogFactory. getLog(java.lang.String name)Convenience method to return a named logger, without the application having to care about factories.static LogLogSource. makeNewLogInstance(java.lang.String name)Deprecated.Create a newLogimplementation, based on the given name. -
Uses of Log in org.apache.commons.logging.impl
Classes in org.apache.commons.logging.impl that implement Log Modifier and Type Class Description classJdk13LumberjackLoggerImplementation of theorg.apache.commons.logging.Loginterface that wraps the standard JDK logging mechanisms that are available in SourceForge's Lumberjack for JDKs prior to 1.4.classJdk14LoggerImplementation of theorg.apache.commons.logging.Loginterface that wraps the standard JDK logging mechanisms that were introduced in the Merlin release (JDK 1.4).classNoOpLogTrivial implementation of Log that throws away all messages.classSimpleLogSimple implementation of Log that sends all enabled log messages, for all defined loggers, to System.err.Methods in org.apache.commons.logging.impl that return Log Modifier and Type Method Description private LogLogFactoryImpl. createLogFromClass(java.lang.String logAdapterClassName, java.lang.String logCategory, boolean affectState)Attempts to load the given class, find a suitable constructor, and instantiate an instance of Log.private LogLogFactoryImpl. discoverLogImplementation(java.lang.String logCategory)Attempts to create a Log instance for the given category name.LogLogFactoryImpl. getInstance(java.lang.Class clazz)Convenience method to derive a name from the specified class and callgetInstance(String)with it.LogLogFactoryImpl. getInstance(java.lang.String name)Construct (if necessary) and return aLoginstance, using the factory's current set of configuration attributes.protected LogLogFactoryImpl. newInstance(java.lang.String name)Create and return a newLoginstance for the specified name.
-