public interface IExceptionLogger
| Modifier and Type | Method and Description |
|---|---|
void |
debug(ILogger logger,
String msg,
Object... args)
Logs a message at the DEBUG level with varying number of arguments.
|
void |
error(ILogger logger,
String msg,
Object... args)
Logs a message at the ERROR level with varying number of arguments.
|
void |
info(ILogger logger,
String msg,
Object... args)
Logs a message at the INFO level with varying number of arguments.
|
void |
trace(ILogger logger,
String msg,
Object... args)
Logs a message at the TRACE level with varying number of arguments.
|
void |
warn(ILogger logger,
String msg,
Object... args)
Logs a message at the WARN level with varying number of arguments.
|
void trace(ILogger logger, String msg, Object... args)
logger - the logger that is currently used by the APImsg - a pattern of the message to be logged that uses the
{} characters to indicate the place for the
appropriate argumentargs - the arguments with an exception object at the last positionvoid debug(ILogger logger, String msg, Object... args)
logger - the logger that is currently used by the APImsg - a pattern of the message to be logged that uses the
{} characters to indicate the place for the
appropriate argumentargs - the arguments with an exception object at the last positionvoid info(ILogger logger, String msg, Object... args)
logger - the logger that is currently used by the APImsg - a pattern of the message to be logged that uses the
{} characters to indicate the place for the
appropriate argumentargs - the arguments with an exception object at the last positionvoid warn(ILogger logger, String msg, Object... args)
logger - the logger that is currently used by the APImsg - a pattern of the message to be logged that uses the
{} characters to indicate the place for the
appropriate argumentargs - the arguments with an exception object at the last positionvoid error(ILogger logger, String msg, Object... args)
logger - the logger that is currently used by the APImsg - a pattern of the message to be logged that uses the
{} characters to indicate the place for the
appropriate argumentargs - the arguments with an exception object at the last positionCopyright © 2017–2022 SNF4J.ORG. All rights reserved.