public class FastLogger extends java.lang.Object implements Logger
Logger
which is based on the ThreadLocal
based
queue which collects all the events on the per-thread basis.
Such logger is designed to have all events stored during the stress-test run and
then sorted and printed out once all the Threads completed execution (inside the
Arbiter
annotated method.
Note, this implementation only supports trace-level logs and ignores all others, it
is intended to be used by StateLogger
.Logger.ChoiceOfMessageSupplier
构造器和说明 |
---|
FastLogger(java.lang.String name) |
限定符和类型 | 方法和说明 |
---|---|
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 |
getName()
Return the name of this
Logger instance. |
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 |
isTraceEnabled()
Is the logger instance enabled for the TRACE level?
|
boolean |
isWarnEnabled()
Is the logger instance enabled for the WARN level?
|
java.lang.String |
toString() |
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 toString()
toString
在类中 java.lang.Object
public java.lang.String getName()
Logger
Logger
instance.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.