Package liquibase.logging
Class LogFactory
- java.lang.Object
-
- liquibase.plugin.AbstractPluginFactory<LogService>
-
- liquibase.logging.LogFactory
-
- All Implemented Interfaces:
PluginFactory,SingletonObject
public class LogFactory extends AbstractPluginFactory<LogService>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static LogFactorygetInstance()Deprecated.static LoggergetLogger()Deprecated.static LoggergetLogger(String ignored)Deprecated.protected Class<LogService>getPluginClass()protected intgetPriority(LogService logService, Object... args)Returns the priority of the given object based on the passed args array.-
Methods inherited from class liquibase.plugin.AbstractPluginFactory
findAllInstances, getPlugin, getPlugins, register, removeInstance
-
-
-
-
Method Detail
-
getPluginClass
protected Class<LogService> getPluginClass()
- Specified by:
getPluginClassin classAbstractPluginFactory<LogService>
-
getPriority
protected int getPriority(LogService logService, Object... args)
Description copied from class:AbstractPluginFactoryReturns the priority of the given object based on the passed args array. The args are created as part of the custom public getPlugin method in implementations are passed throughAbstractPluginFactory.getPlugin(Object...)- Specified by:
getPriorityin classAbstractPluginFactory<LogService>
-
getLogger
@Deprecated public static Logger getLogger(String ignored)
Deprecated.
-
getLogger
@Deprecated public static Logger getLogger()
Deprecated.
-
getInstance
public static LogFactory getInstance()
Deprecated.
-
-