public class TestLogger extends java.lang.Object implements Logger
Logger
that writes to ByteArrayOutputStream
and allows retrieval of
the logs via getErrContent()
and getOutContent()
. Both buffers can
be cleared with reset()
.Logger.ChoiceOfMessageSupplier
构造器和说明 |
---|
TestLogger() |
TestLogger(boolean logCurrentThreadName) |
限定符和类型 | 方法和说明 |
---|---|
void |
debug(java.lang.String msg)
Log a message at the DEBUG level.
|
void |
debug(java.lang.String format,
java.lang.Object... arguments)
Log a message at the DEBUG level according to the specified format
and arguments.
|
void |
debug(java.lang.String msg,
java.lang.Throwable t)
Log an exception (throwable) at the DEBUG level with an
accompanying message.
|
void |
error(java.lang.String msg)
Log a message at the ERROR level.
|
void |
error(java.lang.String format,
java.lang.Object... arguments)
Log a message at the ERROR level according to the specified format
and arguments.
|
void |
error(java.lang.String msg,
java.lang.Throwable t)
Log an exception (throwable) at the ERROR level with an
accompanying message.
|
java.lang.String |
getErrContent() |
java.lang.String |
getName()
Return the name of this
Logger instance. |
java.lang.String |
getOutContent() |
void |
info(java.lang.String msg)
Log a message at the INFO level.
|
void |
info(java.lang.String format,
java.lang.Object... arguments)
Log a message at the INFO level according to the specified format
and arguments.
|
void |
info(java.lang.String msg,
java.lang.Throwable t)
Log an exception (throwable) at the INFO level with an
accompanying message.
|
boolean |
isDebugEnabled()
Is the logger instance enabled for the DEBUG level?
|
boolean |
isErrorEnabled()
Is the logger instance enabled for the ERROR level?
|
boolean |
isInfoEnabled()
Is the logger instance enabled for the INFO level?
|
boolean |
isLogCurrentThreadName() |
boolean |
isTraceEnabled()
Is the logger instance enabled for the TRACE level?
|
boolean |
isWarnEnabled()
Is the logger instance enabled for the WARN level?
|
void |
reset() |
void |
trace(java.lang.String msg)
Log a message at the TRACE level.
|
void |
trace(java.lang.String format,
java.lang.Object... arguments)
Log a message at the TRACE level according to the specified format
and arguments.
|
void |
trace(java.lang.String msg,
java.lang.Throwable t)
Log an exception (throwable) at the TRACE level with an
accompanying message.
|
void |
warn(java.lang.String msg)
Log a message at the WARN level.
|
void |
warn(java.lang.String format,
java.lang.Object... arguments)
Log a message at the WARN level according to the specified format
and arguments.
|
void |
warn(java.lang.String msg,
java.lang.Throwable t)
Log an exception (throwable) at the WARN level with an
accompanying message.
|
errorOrDebug, errorOrDebug, infoOrDebug, infoOrDebug, warnOrDebug, warnOrDebug
public java.lang.String getName()
Logger
Logger
instance.public java.lang.String getErrContent()
public java.lang.String getOutContent()
public void reset()
public boolean isTraceEnabled()
Logger
isTraceEnabled
在接口中 Logger
public void trace(java.lang.String msg)
Logger
public void trace(java.lang.String format, java.lang.Object... arguments)
Logger
This form avoids superfluous string concatenation when the logger
is disabled for the TRACE level. However, this variant incurs the hidden
(and relatively small) cost of creating an Object[]
before invoking the method,
even if this logger is disabled for TRACE.
public void trace(java.lang.String msg, java.lang.Throwable t)
Logger
public boolean isDebugEnabled()
Logger
isDebugEnabled
在接口中 Logger
public void debug(java.lang.String msg)
Logger
public void debug(java.lang.String format, java.lang.Object... arguments)
Logger
This form avoids superfluous string concatenation when the logger
is disabled for the DEBUG level. However, this variant incurs the hidden
(and relatively small) cost of creating an Object[]
before invoking the method,
even if this logger is disabled for DEBUG.
public void debug(java.lang.String msg, java.lang.Throwable t)
Logger
public boolean isInfoEnabled()
Logger
isInfoEnabled
在接口中 Logger
public void info(java.lang.String msg)
Logger
public void info(java.lang.String format, java.lang.Object... arguments)
Logger
This form avoids superfluous string concatenation when the logger
is disabled for the INFO level. However, this variant incurs the hidden
(and relatively small) cost of creating an Object[]
before invoking the method,
even if this logger is disabled for INFO.
public void info(java.lang.String msg, java.lang.Throwable t)
Logger
public boolean isWarnEnabled()
Logger
isWarnEnabled
在接口中 Logger
public void warn(java.lang.String msg)
Logger
public void warn(java.lang.String format, java.lang.Object... arguments)
Logger
This form avoids superfluous string concatenation when the logger
is disabled for the WARN level. However, this variant incurs the hidden
(and relatively small) cost of creating an Object[]
before invoking the method,
even if this logger is disabled for WARN.
public void warn(java.lang.String msg, java.lang.Throwable t)
Logger
public boolean isErrorEnabled()
Logger
isErrorEnabled
在接口中 Logger
public void error(java.lang.String msg)
Logger
public void error(java.lang.String format, java.lang.Object... arguments)
Logger
This form avoids superfluous string concatenation when the logger
is disabled for the ERROR level. However, this variant incurs the hidden
(and relatively small) cost of creating an Object[]
before invoking the method,
even if this logger is disabled for ERROR.
public void error(java.lang.String msg, java.lang.Throwable t)
Logger
public boolean isLogCurrentThreadName()