Class DependencySilentLog
- java.lang.Object
-
- org.apache.maven.plugins.dependency.utils.DependencySilentLog
-
- All Implemented Interfaces:
org.apache.maven.plugin.logging.Log
public class DependencySilentLog extends java.lang.Object implements org.apache.maven.plugin.logging.LogThis logger implements both types of logs currently in use and turns off logs.
-
-
Constructor Summary
Constructors Constructor Description DependencySilentLog()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddebug(java.lang.CharSequence content)By default, do nothing.voiddebug(java.lang.CharSequence content, java.lang.Throwable error)By default, do nothing.voiddebug(java.lang.Throwable error)By default, do nothing.voiderror(java.lang.CharSequence content)By default, do nothing.voiderror(java.lang.CharSequence content, java.lang.Throwable error)By default, do nothing.voiderror(java.lang.Throwable error)By default, do nothing.voidinfo(java.lang.CharSequence content)By default, do nothing.voidinfo(java.lang.CharSequence content, java.lang.Throwable error)By default, do nothing.voidinfo(java.lang.Throwable error)By default, do nothing.booleanisDebugEnabled()booleanisErrorEnabled()booleanisInfoEnabled()booleanisWarnEnabled()By default, do nothing.voidwarn(java.lang.CharSequence content)By default, do nothing.voidwarn(java.lang.CharSequence content, java.lang.Throwable error)By default, do nothing.voidwarn(java.lang.Throwable error)By default, do nothing.
-
-
-
Method Detail
-
isDebugEnabled
public boolean isDebugEnabled()
- Specified by:
isDebugEnabledin interfaceorg.apache.maven.plugin.logging.Log- Returns:
false- See Also:
Log.isDebugEnabled()
-
debug
public void debug(java.lang.CharSequence content)
By default, do nothing.- Specified by:
debugin interfaceorg.apache.maven.plugin.logging.Log- See Also:
Log.debug(java.lang.CharSequence)
-
debug
public void debug(java.lang.CharSequence content, java.lang.Throwable error)By default, do nothing.- Specified by:
debugin interfaceorg.apache.maven.plugin.logging.Log- See Also:
Log.debug(java.lang.CharSequence, java.lang.Throwable)
-
debug
public void debug(java.lang.Throwable error)
By default, do nothing.- Specified by:
debugin interfaceorg.apache.maven.plugin.logging.Log- See Also:
Log.debug(java.lang.Throwable)
-
isInfoEnabled
public boolean isInfoEnabled()
- Specified by:
isInfoEnabledin interfaceorg.apache.maven.plugin.logging.Log- Returns:
false- See Also:
Log.isInfoEnabled()
-
info
public void info(java.lang.CharSequence content)
By default, do nothing.- Specified by:
infoin interfaceorg.apache.maven.plugin.logging.Log- See Also:
Log.info(java.lang.CharSequence)
-
info
public void info(java.lang.CharSequence content, java.lang.Throwable error)By default, do nothing.- Specified by:
infoin interfaceorg.apache.maven.plugin.logging.Log- See Also:
Log.info(java.lang.CharSequence, java.lang.Throwable)
-
info
public void info(java.lang.Throwable error)
By default, do nothing.- Specified by:
infoin interfaceorg.apache.maven.plugin.logging.Log- See Also:
Log.info(java.lang.Throwable)
-
isWarnEnabled
public boolean isWarnEnabled()
By default, do nothing.- Specified by:
isWarnEnabledin interfaceorg.apache.maven.plugin.logging.Log- See Also:
Log.isWarnEnabled()
-
warn
public void warn(java.lang.CharSequence content)
By default, do nothing.- Specified by:
warnin interfaceorg.apache.maven.plugin.logging.Log- See Also:
Log.warn(java.lang.CharSequence)
-
warn
public void warn(java.lang.CharSequence content, java.lang.Throwable error)By default, do nothing.- Specified by:
warnin interfaceorg.apache.maven.plugin.logging.Log- See Also:
Log.warn(java.lang.CharSequence, java.lang.Throwable)
-
warn
public void warn(java.lang.Throwable error)
By default, do nothing.- Specified by:
warnin interfaceorg.apache.maven.plugin.logging.Log- See Also:
Log.warn(java.lang.Throwable)
-
isErrorEnabled
public boolean isErrorEnabled()
- Specified by:
isErrorEnabledin interfaceorg.apache.maven.plugin.logging.Log- Returns:
false- See Also:
Log.isErrorEnabled()
-
error
public void error(java.lang.CharSequence content)
By default, do nothing.- Specified by:
errorin interfaceorg.apache.maven.plugin.logging.Log- See Also:
Log.error(java.lang.CharSequence)
-
error
public void error(java.lang.CharSequence content, java.lang.Throwable error)By default, do nothing.- Specified by:
errorin interfaceorg.apache.maven.plugin.logging.Log- See Also:
Log.error(java.lang.CharSequence, java.lang.Throwable)
-
error
public void error(java.lang.Throwable error)
By default, do nothing.- Specified by:
errorin interfaceorg.apache.maven.plugin.logging.Log- See Also:
Log.error(java.lang.Throwable)
-
-