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 void
close()
void
Logs configuration information.void
Logs configuration information together with data from an error/exception.void
Deprecated.void
Deprecated.void
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
Generic log method that can log at any log levelvoid
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 interface liquibase.ExtensibleObject
clone, describe, get, get, getAttributes, getObjectMetaData, getValuePath, has, set
-
Method Details
-
close
- Specified by:
close
in 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)