@Deprecated public interface Logger
By using this interface, a component can leave logs in the container's logging context. Also, some core components in hst-commons library cannot access to a specific logging implementation like slf4j. For this reason, the components in hst-commons should get access a Logger component from the container to leave a log message.
Modifier and Type | Method and Description |
---|---|
void |
debug(String msg)
Deprecated.
|
void |
debug(String format,
Object arg)
Deprecated.
|
void |
debug(String format,
Object[] argArray)
Deprecated.
|
void |
debug(String format,
Object arg1,
Object arg2)
Deprecated.
|
void |
debug(String msg,
Throwable t)
Deprecated.
|
void |
error(String msg)
Deprecated.
|
void |
error(String format,
Object arg)
Deprecated.
|
void |
error(String format,
Object[] argArray)
Deprecated.
|
void |
error(String format,
Object arg1,
Object arg2)
Deprecated.
|
void |
error(String msg,
Throwable t)
Deprecated.
|
void |
info(String msg)
Deprecated.
|
void |
info(String format,
Object arg)
Deprecated.
|
void |
info(String format,
Object[] arg1)
Deprecated.
|
void |
info(String format,
Object arg1,
Object arg2)
Deprecated.
|
void |
info(String msg,
Throwable t)
Deprecated.
|
boolean |
isDebugEnabled()
Deprecated.
|
boolean |
isErrorEnabled()
Deprecated.
|
boolean |
isInfoEnabled()
Deprecated.
|
boolean |
isWarnEnabled()
Deprecated.
|
void |
warn(String msg)
Deprecated.
|
void |
warn(String format,
Object arg)
Deprecated.
|
void |
warn(String format,
Object[] argArray)
Deprecated.
|
void |
warn(String format,
Object arg1,
Object arg2)
Deprecated.
|
void |
warn(String msg,
Throwable t)
Deprecated.
|
boolean isDebugEnabled()
void debug(String msg)
boolean isInfoEnabled()
void info(String msg)
boolean isWarnEnabled()
void warn(String msg)
boolean isErrorEnabled()
void error(String msg)
Copyright © 2008-2013 Hippo B.V. (http://www.onehippo.com). All Rights Reserved.