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
ModifierConstructorDescriptionprotected
protected
AbstractLogger
(LogMessageFilter ignored) Deprecated.use {@link AbstractLogger(). Passed filter is not used. -
Method Summary
Modifier and TypeMethodDescriptionvoid
Logs configuration information.void
Logs configuration information together with data from an error/exception.void
void
protected String
filterMessage
(String message) Deprecated.now just returns the messagevoid
Logs a debugging event to aid in troubleshooting.void
Logs a debugging event to aid in troubleshooting together with data from an error/exception.void
Logs a general event that might be useful for the user.void
Logs a general event that might be useful for the user together with data from an error/exception.void
Log that a severe error that occurred.void
Log an error together with data from an error/exception.void
Log a event the user should be warned about.void
Log 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, toString
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
Methods 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:Logger
Log that a severe error that occurred. -
severe
Description copied from interface:Logger
Log an error together with data from an error/exception. -
warning
Description copied from interface:Logger
Log a event the user should be warned about. -
warning
Description copied from interface:Logger
Log a event the user should be warned about together with data from an error/exception. -
info
Description copied from interface:Logger
Logs a general event that might be useful for the user. -
info
Description copied from interface:Logger
Logs a general event that might be useful for the user together with data from an error/exception. -
config
Description copied from interface:Logger
Logs configuration information. -
config
Description copied from interface:Logger
Logs configuration information together with data from an error/exception. -
fine
Description copied from interface:Logger
Logs a debugging event to aid in troubleshooting. -
fine
Description copied from interface:Logger
Logs a debugging event to aid in troubleshooting together with data from an error/exception. -
debug
-
debug
-
filterMessage
Deprecated.now just returns the message
-