public abstract class AbstractLogger extends Object implements Logger
Constructor and Description |
---|
AbstractLogger() |
Modifier and Type | Method and Description |
---|---|
void |
debug(String message)
Logs a debugging event to aid in troubleshooting, using the
LogType.LOG type. |
void |
debug(String message,
Throwable e)
Logs a debugging event to aid in troubleshooting together with data from an error/exception, using the
LogType.LOG type. |
void |
info(String message)
Logs a general event that might be useful for the user, using the
LogType.LOG type. |
void |
info(String message,
Throwable e)
Logs a general event that might be useful for the user together with data from an error/exception, using the
LogType.LOG type. |
void |
severe(String message)
Log an error that occurred, using the
LogType.LOG type. |
void |
severe(String message,
Throwable e)
Log an error together with data from an error/exception, using the
LogType.LOG type. |
void |
warning(String message)
Log a event the user should be warned about, using the
LogType.LOG type. |
void |
warning(String message,
Throwable e)
Log a event the user should be warned about together with data from an error/exception, using the
LogType.LOG type. |
public void severe(String message)
Logger
LogType.LOG
type.public void severe(String message, Throwable e)
Logger
LogType.LOG
type.public void warning(String message)
Logger
LogType.LOG
type.public void warning(String message, Throwable e)
Logger
LogType.LOG
type.public void info(String message)
Logger
LogType.LOG
type.public void info(String message, Throwable e)
Logger
LogType.LOG
type.public void debug(String message)
Logger
LogType.LOG
type.Copyright © 2018 Liquibase.org. All rights reserved.