Package liquibase.logging
Interface Logger
- All Superinterfaces:
AutoCloseable,Cloneable,ExtensibleObject
- All Known Implementing Classes:
AbstractLogger,AntTaskLogger,BufferedLogger,CompositeLogger,JavaLogger,NoOpLogger
Interface to class that does the actual logging.
Instances will be created by
LogService, normally through Scope.getLog(Class)).-
Method Summary
Modifier and TypeMethodDescriptiondefault voidclose()voidLogs configuration information.voidLogs configuration information together with data from an error/exception.voidDeprecated.voidDeprecated.voidLogs 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.voidGeneric log method that can log at any log levelvoidLog 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 interface liquibase.ExtensibleObject
clone, describe, get, get, getAttributes, getObjectMetaData, getValuePath, has, set
-
Method Details
-
close
- Specified by:
closein interfaceAutoCloseable- Throws:
Exception
-
log
Generic log method that can log at any log level -
severe
Log that a severe error that occurred. -
severe
Log an error together with data from an error/exception. -
warning
Log a event the user should be warned about. -
warning
Log a event the user should be warned about together with data from an error/exception. -
info
Logs a general event that might be useful for the user. -
info
Logs a general event that might be useful for the user together with data from an error/exception. -
config
Logs configuration information. -
config
Logs configuration information together with data from an error/exception. -
fine
Logs a debugging event to aid in troubleshooting. -
fine
Logs a debugging event to aid in troubleshooting together with data from an error/exception. -
debug
Deprecated.usefine(String) -
debug
Deprecated.
-
fine(String)