Package org.apache.maven.scm.log
Interface ScmLogger
-
- All Known Implementing Classes:
DefaultLog,DefaultLog,PlexusLogger,ScmLogDispatcher
public interface ScmLogger- Author:
- Emmanuel Venisse
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddebug(String content)voiddebug(String content, Throwable error)voiddebug(Throwable error)voiderror(String content)voiderror(String content, Throwable error)voiderror(Throwable error)voidinfo(String content)voidinfo(String content, Throwable error)voidinfo(Throwable error)booleanisDebugEnabled()booleanisErrorEnabled()booleanisInfoEnabled()booleanisWarnEnabled()voidwarn(String content)voidwarn(String content, Throwable error)voidwarn(Throwable error)
-
-
-
Method Detail
-
isDebugEnabled
boolean isDebugEnabled()
-
debug
void debug(String content)
-
debug
void debug(Throwable error)
-
isInfoEnabled
boolean isInfoEnabled()
-
info
void info(String content)
-
info
void info(Throwable error)
-
isWarnEnabled
boolean isWarnEnabled()
-
warn
void warn(String content)
-
warn
void warn(Throwable error)
-
isErrorEnabled
boolean isErrorEnabled()
-
error
void error(String content)
-
error
void error(Throwable error)
-
-