Class MavenLogWrapper
- java.lang.Object
-
- io.freefair.gradle.plugins.maven.plugin.wrappers.MavenLogWrapper
-
- All Implemented Interfaces:
Log
public class MavenLogWrapper extends Object implements Log
MavenLog
implementation 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 void
debug(CharSequence content)
void
debug(CharSequence content, Throwable error)
void
debug(Throwable error)
void
error(CharSequence content)
void
error(CharSequence content, Throwable error)
void
error(Throwable error)
void
info(CharSequence content)
void
info(CharSequence content, Throwable error)
void
info(Throwable error)
boolean
isDebugEnabled()
boolean
isErrorEnabled()
boolean
isInfoEnabled()
boolean
isWarnEnabled()
void
warn(CharSequence content)
void
warn(CharSequence content, Throwable error)
void
warn(Throwable error)
-
-
-
Constructor Detail
-
MavenLogWrapper
public MavenLogWrapper(Logger gradleLogger)
-
-
Method Detail
-
isDebugEnabled
public boolean isDebugEnabled()
- Specified by:
isDebugEnabled
in interfaceLog
-
debug
public void debug(CharSequence content)
-
debug
public void debug(CharSequence content, Throwable error)
-
isInfoEnabled
public boolean isInfoEnabled()
- Specified by:
isInfoEnabled
in interfaceLog
-
info
public void info(CharSequence content)
-
info
public void info(CharSequence content, Throwable error)
-
isWarnEnabled
public boolean isWarnEnabled()
- Specified by:
isWarnEnabled
in interfaceLog
-
warn
public void warn(CharSequence content)
-
warn
public void warn(CharSequence content, Throwable error)
-
isErrorEnabled
public boolean isErrorEnabled()
- Specified by:
isErrorEnabled
in interfaceLog
-
error
public void error(CharSequence content)
-
error
public void error(CharSequence content, Throwable error)
-
-