Package org.reficio.p2.logger
Class Logger
- java.lang.Object
-
- org.reficio.p2.logger.Logger
-
- All Implemented Interfaces:
org.apache.maven.plugin.logging.Log
public final class Logger extends Object implements org.apache.maven.plugin.logging.Log
- Since:
- 1.0.0
- Author:
- Tom Bujok (tom.bujok@gmail.com)
Reficio (TM) - Reestablish your software!
http://www.reficio.org
-
-
Method Summary
All Methods Static 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)static LoggergetLog()voidinfo(CharSequence charSequence)voidinfo(CharSequence charSequence, Throwable throwable)voidinfo(Throwable throwable)static voidinitialize(org.apache.maven.plugin.logging.Log log)booleanisDebugEnabled()booleanisErrorEnabled()booleanisInfoEnabled()booleanisWarnEnabled()voidwarn(CharSequence charSequence)voidwarn(CharSequence charSequence, Throwable throwable)voidwarn(Throwable throwable)
-
-
-
Method Detail
-
getLog
public static Logger getLog()
-
initialize
public static void initialize(org.apache.maven.plugin.logging.Log log)
-
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
-
-