Class MavenLogWrapper
- java.lang.Object
 - 
- io.freefair.gradle.plugins.maven.plugin.wrappers.MavenLogWrapper
 
 
- 
- All Implemented Interfaces:
 org.apache.maven.plugin.logging.Log
public class MavenLogWrapper extends Object implements org.apache.maven.plugin.logging.Log
MavenLogimplementation which delegates to agradle logger. 
- 
- 
Constructor Summary
Constructors Constructor Description MavenLogWrapper(Logger gradleLogger) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddebug(CharSequence content)voiddebug(CharSequence content, Throwable error)voiddebug(Throwable error)voiderror(CharSequence content)voiderror(CharSequence content, Throwable error)voiderror(Throwable error)voidinfo(CharSequence content)voidinfo(CharSequence content, Throwable error)voidinfo(Throwable error)booleanisDebugEnabled()booleanisErrorEnabled()booleanisInfoEnabled()booleanisWarnEnabled()voidwarn(CharSequence content)voidwarn(CharSequence content, Throwable error)voidwarn(Throwable error) 
 - 
 
- 
- 
Constructor Detail
- 
MavenLogWrapper
public MavenLogWrapper(Logger gradleLogger)
 
 - 
 
- 
Method Detail
- 
isDebugEnabled
public boolean isDebugEnabled()
- Specified by:
 isDebugEnabledin interfaceorg.apache.maven.plugin.logging.Log
 
- 
debug
public void debug(CharSequence content)
- Specified by:
 debugin interfaceorg.apache.maven.plugin.logging.Log
 
- 
debug
public void debug(CharSequence content, Throwable error)
- Specified by:
 debugin interfaceorg.apache.maven.plugin.logging.Log
 
- 
debug
public void debug(Throwable error)
- 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 content)
- Specified by:
 infoin interfaceorg.apache.maven.plugin.logging.Log
 
- 
info
public void info(CharSequence content, Throwable error)
- Specified by:
 infoin interfaceorg.apache.maven.plugin.logging.Log
 
- 
info
public void info(Throwable error)
- 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 content)
- Specified by:
 warnin interfaceorg.apache.maven.plugin.logging.Log
 
- 
warn
public void warn(CharSequence content, Throwable error)
- Specified by:
 warnin interfaceorg.apache.maven.plugin.logging.Log
 
- 
warn
public void warn(Throwable error)
- 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 content)
- Specified by:
 errorin interfaceorg.apache.maven.plugin.logging.Log
 
- 
error
public void error(CharSequence content, Throwable error)
- Specified by:
 errorin interfaceorg.apache.maven.plugin.logging.Log
 
- 
error
public void error(Throwable error)
- Specified by:
 errorin interfaceorg.apache.maven.plugin.logging.Log
 
 - 
 
 -