Package liquibase.logging.core
Class AbstractLogService
- java.lang.Object
-
- liquibase.logging.core.AbstractLogService
-
- All Implemented Interfaces:
LogService,Plugin
- Direct Known Subclasses:
AntTaskLogService,BufferedLogService,CompositeLogService,JavaLogService,MavenLogService,NoOpLogService
public abstract class AbstractLogService extends Object implements LogService
Convenience base implementation of a LoggerFactory.
-
-
Field Summary
-
Fields inherited from interface liquibase.plugin.Plugin
PRIORITY_DATABASE, PRIORITY_DEFAULT, PRIORITY_NOT_APPLICABLE, PRIORITY_SPECIALIZED
-
-
Constructor Summary
Constructors Constructor Description AbstractLogService()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidclose()Default implementation does nothing.LogMessageFiltergetFilter()Deprecated.always returns nullvoidsetFilter(LogMessageFilter filter)Deprecated.does not save the filter-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface liquibase.logging.LogService
getLog, getPriority
-
-
-
-
Method Detail
-
close
public void close()
Default implementation does nothing.- Specified by:
closein interfaceLogService
-
getFilter
@Deprecated public LogMessageFilter getFilter()
Deprecated.always returns null- Specified by:
getFilterin interfaceLogService
-
setFilter
@Deprecated public void setFilter(LogMessageFilter filter)
Deprecated.does not save the filterDescription copied from interface:LogServiceSets the filter to use for messages sent through this log service.- Specified by:
setFilterin interfaceLogService
-
-