true
) or off (false
) during execution.
@param traceOnOrOff True iff tracing is enabled.
Log a message with trace log level.
@param message log this messageTRACE
priority. Currently logs to DEBUG
level in Log4J.
Log
.
@param o message.
o
as the body of the message.
Usage guide:
logger.trace("Joining {0} with {1}", a, b); a.join(b);@param message A message, using positional argument syntax @param arguments an optional array of arguments
This form avoids superfluous object creation when the logger is disabled for the TRACE level.
@param format the format string @param arg1 the first argument @param arg2 the second argument @since 1.4
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|