Package org.liquibase.maven.plugins
Class MavenLog
- java.lang.Object
-
- org.liquibase.maven.plugins.MavenLog
-
- All Implemented Interfaces:
org.apache.maven.plugin.logging.Log
public class MavenLog extends Object implements org.apache.maven.plugin.logging.Log
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classMavenLog.Level
-
Constructor Summary
Constructors Constructor Description MavenLog(org.apache.maven.plugin.logging.Log actualLog, String level)MavenLog(org.apache.maven.plugin.logging.Log actualLog, MavenLog.Level level)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddebug(CharSequence charSequence)voiddebug(CharSequence charSequence, Throwable throwable)voiddebug(Throwable throwable)voiderror(CharSequence charSequence)voiderror(CharSequence charSequence, Throwable throwable)voiderror(Throwable throwable)voidinfo(CharSequence charSequence)voidinfo(CharSequence charSequence, Throwable throwable)voidinfo(Throwable throwable)booleanisDebugEnabled()booleanisErrorEnabled()booleanisInfoEnabled()booleanisWarnEnabled()voidwarn(CharSequence charSequence)voidwarn(CharSequence charSequence, Throwable throwable)voidwarn(Throwable throwable)
-
-
-
Constructor Detail
-
MavenLog
public MavenLog(org.apache.maven.plugin.logging.Log actualLog, MavenLog.Level level)
-
MavenLog
public MavenLog(org.apache.maven.plugin.logging.Log actualLog, String level)
-
-
Method Detail
-
isDebugEnabled
public boolean isDebugEnabled()
- Specified by:
isDebugEnabledin interfaceorg.apache.maven.plugin.logging.Log
-
debug
public void debug(CharSequence charSequence)
- Specified by:
debugin interfaceorg.apache.maven.plugin.logging.Log
-
debug
public void debug(CharSequence charSequence, Throwable throwable)
- Specified by:
debugin interfaceorg.apache.maven.plugin.logging.Log
-
debug
public void debug(Throwable throwable)
- Specified by:
debugin interfaceorg.apache.maven.plugin.logging.Log
-
isInfoEnabled
public boolean isInfoEnabled()
- Specified by:
isInfoEnabledin interfaceorg.apache.maven.plugin.logging.Log
-
info
public void info(CharSequence charSequence)
- Specified by:
infoin interfaceorg.apache.maven.plugin.logging.Log
-
info
public void info(CharSequence charSequence, Throwable throwable)
- Specified by:
infoin interfaceorg.apache.maven.plugin.logging.Log
-
info
public void info(Throwable throwable)
- Specified by:
infoin interfaceorg.apache.maven.plugin.logging.Log
-
isWarnEnabled
public boolean isWarnEnabled()
- Specified by:
isWarnEnabledin interfaceorg.apache.maven.plugin.logging.Log
-
warn
public void warn(CharSequence charSequence)
- Specified by:
warnin interfaceorg.apache.maven.plugin.logging.Log
-
warn
public void warn(CharSequence charSequence, Throwable throwable)
- Specified by:
warnin interfaceorg.apache.maven.plugin.logging.Log
-
warn
public void warn(Throwable throwable)
- Specified by:
warnin interfaceorg.apache.maven.plugin.logging.Log
-
isErrorEnabled
public boolean isErrorEnabled()
- Specified by:
isErrorEnabledin interfaceorg.apache.maven.plugin.logging.Log
-
error
public void error(CharSequence charSequence)
- Specified by:
errorin interfaceorg.apache.maven.plugin.logging.Log
-
error
public void error(CharSequence charSequence, Throwable throwable)
- Specified by:
errorin interfaceorg.apache.maven.plugin.logging.Log
-
error
public void error(Throwable throwable)
- Specified by:
errorin interfaceorg.apache.maven.plugin.logging.Log
-
-