Class DefaultLogger
- java.lang.Object
-
- io.ciera.runtime.summit.application.DefaultLogger
-
-
Constructor Summary
Constructors Constructor Description DefaultLogger()DefaultLogger(OutputStream out, OutputStream err)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddebug(CharSequence content)voiddebug(CharSequence content, Throwable error)voiddebug(String format, Object... args)voiddebug(Throwable error)voiderror(CharSequence content)voiderror(CharSequence content, Throwable error)voiderror(String format, Object... args)voiderror(Throwable error)voidinfo(CharSequence content)voidinfo(CharSequence content, Throwable error)voidinfo(String format, Object... args)voidinfo(Throwable error)booleanisDebugEnabled()booleanisErrorEnabled()booleanisInfoEnabled()booleanisWarnEnabled()voidwarn(CharSequence content)voidwarn(CharSequence content, Throwable error)voidwarn(String format, Object... args)voidwarn(Throwable error)
-
-
-
Constructor Detail
-
DefaultLogger
public DefaultLogger()
-
DefaultLogger
public DefaultLogger(OutputStream out, OutputStream err)
-
-
Method Detail
-
debug
public void debug(CharSequence content)
-
debug
public void debug(CharSequence content, Throwable error)
-
error
public void error(CharSequence content)
-
error
public void error(CharSequence content, Throwable error)
-
info
public void info(CharSequence content)
-
info
public void info(CharSequence content, Throwable error)
-
isDebugEnabled
public boolean isDebugEnabled()
- Specified by:
isDebugEnabledin interfaceILogger
-
isErrorEnabled
public boolean isErrorEnabled()
- Specified by:
isErrorEnabledin interfaceILogger
-
isInfoEnabled
public boolean isInfoEnabled()
- Specified by:
isInfoEnabledin interfaceILogger
-
isWarnEnabled
public boolean isWarnEnabled()
- Specified by:
isWarnEnabledin interfaceILogger
-
warn
public void warn(CharSequence content)
-
warn
public void warn(CharSequence content, Throwable error)
-
-