Package liquibase.logging.core
Class AbstractLogger
java.lang.Object
liquibase.AbstractExtensibleObject
liquibase.logging.core.AbstractLogger
- All Implemented Interfaces:
AutoCloseable,Cloneable,ExtensibleObject,Logger
- Direct Known Subclasses:
AntTaskLogger,BufferedLogger,CompositeLogger,JavaLogger,NoOpLogger
Convenience base implementation of a Logger.
Default implementation calls down to the
Logger.log(Level, String, Throwable) method for all the convenience methods.-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedprotectedAbstractLogger(LogMessageFilter ignored) Deprecated.use {@link AbstractLogger(). Passed filter is not used. -
Method Summary
Modifier and TypeMethodDescriptionvoidLogs configuration information.voidLogs configuration information together with data from an error/exception.voidvoidprotected StringfilterMessage(String message) Deprecated.now just returns the messagevoidLogs a debugging event to aid in troubleshooting.voidLogs a debugging event to aid in troubleshooting together with data from an error/exception.voidLogs a general event that might be useful for the user.voidLogs a general event that might be useful for the user together with data from an error/exception.voidLog that a severe error that occurred.voidLog an error together with data from an error/exception.voidLog a event the user should be warned about.voidLog a event the user should be warned about together with data from an error/exception.Methods inherited from class liquibase.AbstractExtensibleObject
clone, describe, equals, get, get, get, getAttributes, getFieldValue, getObjectMetaData, getValuePath, has, hashCode, set, toStringMethods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface liquibase.ExtensibleObject
clone, describe, get, get, getAttributes, getObjectMetaData, getValuePath, has, set
-
Constructor Details
-
AbstractLogger
Deprecated.use {@link AbstractLogger(). Passed filter is not used. -
AbstractLogger
protected AbstractLogger()
-
-
Method Details
-
severe
Description copied from interface:LoggerLog that a severe error that occurred. -
severe
Description copied from interface:LoggerLog an error together with data from an error/exception. -
warning
Description copied from interface:LoggerLog a event the user should be warned about. -
warning
Description copied from interface:LoggerLog a event the user should be warned about together with data from an error/exception. -
info
Description copied from interface:LoggerLogs a general event that might be useful for the user. -
info
Description copied from interface:LoggerLogs a general event that might be useful for the user together with data from an error/exception. -
config
Description copied from interface:LoggerLogs configuration information. -
config
Description copied from interface:LoggerLogs configuration information together with data from an error/exception. -
fine
Description copied from interface:LoggerLogs a debugging event to aid in troubleshooting. -
fine
Description copied from interface:LoggerLogs a debugging event to aid in troubleshooting together with data from an error/exception. -
debug
-
debug
-
filterMessage
Deprecated.now just returns the message
-