public class CLocLogger<E extends Enum<?>> extends CLoggerBase
slf4j Logger, which is the main user entry point of SLF4J API.
It is expected that logging takes place through concrete implementations
of org.slf4j.Logger.
The following example was taken from the slf4j Logger documentation and
adapted to show how to use a Cthul Logger.
import org.cthul.log.CLogger;
import org.cthul.log.CLoggerFactory;
public class Wombat {
final static CLogger logger = CLoggerFactory.getLogger(Wombat.class);
Integer t;
Integer oldT;
public void setTemperature(Integer temperature) {
oldT = t;
t = temperature;
logger.debug("Temperature set to %s. Old temperature was %s.", t, oldT);
if(temperature.intValue() > 50) {
logger.info("Temperature has risen above 50 degrees.");
}
}
}
| Modifier and Type | Field and Description |
|---|---|
protected CLocLogConfiguration |
locConf |
conf, laLogger, logger| Constructor and Description |
|---|
CLocLogger(org.slf4j.Logger logger) |
CLocLogger(org.slf4j.Logger logger,
CLocLogConfiguration conf) |
| Modifier and Type | Method and Description |
|---|---|
void |
debug(E message)
Log a message at the debug level.
|
void |
debug(E message,
Object... args)
Log a message at the debug level, according to the specified format and arguments.
|
void |
debug(E message,
Object arg1)
Log a message at the debug level, according to the specified format and arguments.
|
void |
debug(E message,
Object arg1,
Object arg2)
Log a message at the debug level, according to the specified format and arguments.
|
void |
debug(E message,
Object arg1,
Object arg2,
Object arg3)
Log a message at the debug level, according to the specified format and arguments.
|
void |
debug(org.slf4j.Marker marker,
E message)
Log a message with the specific Marker at the debug level.
|
void |
debug(org.slf4j.Marker marker,
E message,
Object... args)
Log a message with the specific Marker at the debug level, according to the specified format and arguments.
|
void |
debug(org.slf4j.Marker marker,
E message,
Object arg1)
Log a message with the specific Marker at the debug level, according to the specified format and arguments.
|
void |
debug(org.slf4j.Marker marker,
E message,
Object arg1,
Object arg2)
Log a message with the specific Marker at the debug level, according to the specified format and arguments.
|
void |
debug(org.slf4j.Marker marker,
E message,
Object arg1,
Object arg2,
Object arg3)
Log a message with the specific Marker at the debug level, according to the specified format and arguments.
|
void |
debug(org.slf4j.Marker marker,
Throwable throwable,
E message)
Log an exception with the specific Marker at the debug level.
|
void |
debug(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object... args)
Log an exception with the specific Marker at the debug level, according to the specified format and arguments.
|
void |
debug(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object arg1)
Log an exception with the specific Marker at the debug level, according to the specified format and arguments.
|
void |
debug(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object arg1,
Object arg2)
Log an exception with the specific Marker at the debug level, according to the specified format and arguments.
|
void |
debug(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object arg1,
Object arg2,
Object arg3)
Log an exception with the specific Marker at the debug level, according to the specified format and arguments.
|
void |
debug(Throwable throwable,
E message)
Log an exception at the debug level.
|
void |
debug(Throwable throwable,
E message,
Object... args)
Log an exception at the debug level, according to the specified format and arguments.
|
void |
debug(Throwable throwable,
E message,
Object arg1)
Log an exception at the debug level, according to the specified format and arguments.
|
void |
debug(Throwable throwable,
E message,
Object arg1,
Object arg2)
Log an exception at the debug level, according to the specified format and arguments.
|
void |
debug(Throwable throwable,
E message,
Object arg1,
Object arg2,
Object arg3)
Log an exception at the debug level, according to the specified format and arguments.
|
void |
error(E message)
Log a message at the error level.
|
void |
error(E message,
Object... args)
Log a message at the error level, according to the specified format and arguments.
|
void |
error(E message,
Object arg1)
Log a message at the error level, according to the specified format and arguments.
|
void |
error(E message,
Object arg1,
Object arg2)
Log a message at the error level, according to the specified format and arguments.
|
void |
error(E message,
Object arg1,
Object arg2,
Object arg3)
Log a message at the error level, according to the specified format and arguments.
|
void |
error(org.slf4j.Marker marker,
E message)
Log a message with the specific Marker at the error level.
|
void |
error(org.slf4j.Marker marker,
E message,
Object... args)
Log a message with the specific Marker at the error level, according to the specified format and arguments.
|
void |
error(org.slf4j.Marker marker,
E message,
Object arg1)
Log a message with the specific Marker at the error level, according to the specified format and arguments.
|
void |
error(org.slf4j.Marker marker,
E message,
Object arg1,
Object arg2)
Log a message with the specific Marker at the error level, according to the specified format and arguments.
|
void |
error(org.slf4j.Marker marker,
E message,
Object arg1,
Object arg2,
Object arg3)
Log a message with the specific Marker at the error level, according to the specified format and arguments.
|
void |
error(org.slf4j.Marker marker,
Throwable throwable,
E message)
Log an exception with the specific Marker at the error level.
|
void |
error(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object... args)
Log an exception with the specific Marker at the error level, according to the specified format and arguments.
|
void |
error(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object arg1)
Log an exception with the specific Marker at the error level, according to the specified format and arguments.
|
void |
error(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object arg1,
Object arg2)
Log an exception with the specific Marker at the error level, according to the specified format and arguments.
|
void |
error(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object arg1,
Object arg2,
Object arg3)
Log an exception with the specific Marker at the error level, according to the specified format and arguments.
|
void |
error(Throwable throwable,
E message)
Log an exception at the error level.
|
void |
error(Throwable throwable,
E message,
Object... args)
Log an exception at the error level, according to the specified format and arguments.
|
void |
error(Throwable throwable,
E message,
Object arg1)
Log an exception at the error level, according to the specified format and arguments.
|
void |
error(Throwable throwable,
E message,
Object arg1,
Object arg2)
Log an exception at the error level, according to the specified format and arguments.
|
void |
error(Throwable throwable,
E message,
Object arg1,
Object arg2,
Object arg3)
Log an exception at the error level, according to the specified format and arguments.
|
protected String |
f(E message) |
protected String |
f(Throwable throwable,
E message) |
protected String |
f(Throwable throwable,
E message,
Object... args) |
void |
info(E message)
Log a message at the info level.
|
void |
info(E message,
Object... args)
Log a message at the info level, according to the specified format and arguments.
|
void |
info(E message,
Object arg1)
Log a message at the info level, according to the specified format and arguments.
|
void |
info(E message,
Object arg1,
Object arg2)
Log a message at the info level, according to the specified format and arguments.
|
void |
info(E message,
Object arg1,
Object arg2,
Object arg3)
Log a message at the info level, according to the specified format and arguments.
|
void |
info(org.slf4j.Marker marker,
E message)
Log a message with the specific Marker at the info level.
|
void |
info(org.slf4j.Marker marker,
E message,
Object... args)
Log a message with the specific Marker at the info level, according to the specified format and arguments.
|
void |
info(org.slf4j.Marker marker,
E message,
Object arg1)
Log a message with the specific Marker at the info level, according to the specified format and arguments.
|
void |
info(org.slf4j.Marker marker,
E message,
Object arg1,
Object arg2)
Log a message with the specific Marker at the info level, according to the specified format and arguments.
|
void |
info(org.slf4j.Marker marker,
E message,
Object arg1,
Object arg2,
Object arg3)
Log a message with the specific Marker at the info level, according to the specified format and arguments.
|
void |
info(org.slf4j.Marker marker,
Throwable throwable,
E message)
Log an exception with the specific Marker at the info level.
|
void |
info(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object... args)
Log an exception with the specific Marker at the info level, according to the specified format and arguments.
|
void |
info(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object arg1)
Log an exception with the specific Marker at the info level, according to the specified format and arguments.
|
void |
info(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object arg1,
Object arg2)
Log an exception with the specific Marker at the info level, according to the specified format and arguments.
|
void |
info(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object arg1,
Object arg2,
Object arg3)
Log an exception with the specific Marker at the info level, according to the specified format and arguments.
|
void |
info(Throwable throwable,
E message)
Log an exception at the info level.
|
void |
info(Throwable throwable,
E message,
Object... args)
Log an exception at the info level, according to the specified format and arguments.
|
void |
info(Throwable throwable,
E message,
Object arg1)
Log an exception at the info level, according to the specified format and arguments.
|
void |
info(Throwable throwable,
E message,
Object arg1,
Object arg2)
Log an exception at the info level, according to the specified format and arguments.
|
void |
info(Throwable throwable,
E message,
Object arg1,
Object arg2,
Object arg3)
Log an exception at the info level, according to the specified format and arguments.
|
void |
log(CLogLevel level,
E message)
Log a message at the given level.
|
void |
log(CLogLevel level,
E message,
Object... args)
Log a message at the given level, according to the specified format and arguments.
|
void |
log(CLogLevel level,
E message,
Object arg1)
Log a message at the given level, according to the specified format and arguments.
|
void |
log(CLogLevel level,
E message,
Object arg1,
Object arg2)
Log a message at the given level, according to the specified format and arguments.
|
void |
log(CLogLevel level,
E message,
Object arg1,
Object arg2,
Object arg3)
Log a message at the given level, according to the specified format and arguments.
|
void |
log(CLogLevel level,
org.slf4j.Marker marker,
E message)
Log a message with the specific Marker at the given level.
|
void |
log(CLogLevel level,
org.slf4j.Marker marker,
E message,
Object... args)
Log a message with the specific Marker at the given level, according to the specified format and arguments.
|
void |
log(CLogLevel level,
org.slf4j.Marker marker,
E message,
Object arg1)
Log a message with the specific Marker at the given level, according to the specified format and arguments.
|
void |
log(CLogLevel level,
org.slf4j.Marker marker,
E message,
Object arg1,
Object arg2)
Log a message with the specific Marker at the given level, according to the specified format and arguments.
|
void |
log(CLogLevel level,
org.slf4j.Marker marker,
E message,
Object arg1,
Object arg2,
Object arg3)
Log a message with the specific Marker at the given level, according to the specified format and arguments.
|
void |
log(CLogLevel level,
org.slf4j.Marker marker,
Throwable throwable,
E message)
Log an exception with the specific Marker at the given level.
|
void |
log(CLogLevel level,
org.slf4j.Marker marker,
Throwable throwable,
E message,
Object... args)
Log an exception with the specific Marker at the given level, according to the specified format and arguments.
|
void |
log(CLogLevel level,
org.slf4j.Marker marker,
Throwable throwable,
E message,
Object arg1)
Log an exception with the specific Marker at the given level, according to the specified format and arguments.
|
void |
log(CLogLevel level,
org.slf4j.Marker marker,
Throwable throwable,
E message,
Object arg1,
Object arg2)
Log an exception with the specific Marker at the given level, according to the specified format and arguments.
|
void |
log(CLogLevel level,
org.slf4j.Marker marker,
Throwable throwable,
E message,
Object arg1,
Object arg2,
Object arg3)
Log an exception with the specific Marker at the given level, according to the specified format and arguments.
|
void |
log(CLogLevel level,
Throwable throwable,
E message)
Log an exception at the given level.
|
void |
log(CLogLevel level,
Throwable throwable,
E message,
Object... args)
Log an exception at the given level, according to the specified format and arguments.
|
void |
log(CLogLevel level,
Throwable throwable,
E message,
Object arg1)
Log an exception at the given level, according to the specified format and arguments.
|
void |
log(CLogLevel level,
Throwable throwable,
E message,
Object arg1,
Object arg2)
Log an exception at the given level, according to the specified format and arguments.
|
void |
log(CLogLevel level,
Throwable throwable,
E message,
Object arg1,
Object arg2,
Object arg3)
Log an exception at the given level, according to the specified format and arguments.
|
protected String |
m(E message) |
void |
trace(E message)
Log a message at the trace level.
|
void |
trace(E message,
Object... args)
Log a message at the trace level, according to the specified format and arguments.
|
void |
trace(E message,
Object arg1)
Log a message at the trace level, according to the specified format and arguments.
|
void |
trace(E message,
Object arg1,
Object arg2)
Log a message at the trace level, according to the specified format and arguments.
|
void |
trace(E message,
Object arg1,
Object arg2,
Object arg3)
Log a message at the trace level, according to the specified format and arguments.
|
void |
trace(org.slf4j.Marker marker,
E message)
Log a message with the specific Marker at the trace level.
|
void |
trace(org.slf4j.Marker marker,
E message,
Object... args)
Log a message with the specific Marker at the trace level, according to the specified format and arguments.
|
void |
trace(org.slf4j.Marker marker,
E message,
Object arg1)
Log a message with the specific Marker at the trace level, according to the specified format and arguments.
|
void |
trace(org.slf4j.Marker marker,
E message,
Object arg1,
Object arg2)
Log a message with the specific Marker at the trace level, according to the specified format and arguments.
|
void |
trace(org.slf4j.Marker marker,
E message,
Object arg1,
Object arg2,
Object arg3)
Log a message with the specific Marker at the trace level, according to the specified format and arguments.
|
void |
trace(org.slf4j.Marker marker,
Throwable throwable,
E message)
Log an exception with the specific Marker at the trace level.
|
void |
trace(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object... args)
Log an exception with the specific Marker at the trace level, according to the specified format and arguments.
|
void |
trace(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object arg1)
Log an exception with the specific Marker at the trace level, according to the specified format and arguments.
|
void |
trace(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object arg1,
Object arg2)
Log an exception with the specific Marker at the trace level, according to the specified format and arguments.
|
void |
trace(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object arg1,
Object arg2,
Object arg3)
Log an exception with the specific Marker at the trace level, according to the specified format and arguments.
|
void |
trace(Throwable throwable,
E message)
Log an exception at the trace level.
|
void |
trace(Throwable throwable,
E message,
Object... args)
Log an exception at the trace level, according to the specified format and arguments.
|
void |
trace(Throwable throwable,
E message,
Object arg1)
Log an exception at the trace level, according to the specified format and arguments.
|
void |
trace(Throwable throwable,
E message,
Object arg1,
Object arg2)
Log an exception at the trace level, according to the specified format and arguments.
|
void |
trace(Throwable throwable,
E message,
Object arg1,
Object arg2,
Object arg3)
Log an exception at the trace level, according to the specified format and arguments.
|
void |
warn(E message)
Log a message at the warn level.
|
void |
warn(E message,
Object... args)
Log a message at the warn level, according to the specified format and arguments.
|
void |
warn(E message,
Object arg1)
Log a message at the warn level, according to the specified format and arguments.
|
void |
warn(E message,
Object arg1,
Object arg2)
Log a message at the warn level, according to the specified format and arguments.
|
void |
warn(E message,
Object arg1,
Object arg2,
Object arg3)
Log a message at the warn level, according to the specified format and arguments.
|
void |
warn(org.slf4j.Marker marker,
E message)
Log a message with the specific Marker at the warn level.
|
void |
warn(org.slf4j.Marker marker,
E message,
Object... args)
Log a message with the specific Marker at the warn level, according to the specified format and arguments.
|
void |
warn(org.slf4j.Marker marker,
E message,
Object arg1)
Log a message with the specific Marker at the warn level, according to the specified format and arguments.
|
void |
warn(org.slf4j.Marker marker,
E message,
Object arg1,
Object arg2)
Log a message with the specific Marker at the warn level, according to the specified format and arguments.
|
void |
warn(org.slf4j.Marker marker,
E message,
Object arg1,
Object arg2,
Object arg3)
Log a message with the specific Marker at the warn level, according to the specified format and arguments.
|
void |
warn(org.slf4j.Marker marker,
Throwable throwable,
E message)
Log an exception with the specific Marker at the warn level.
|
void |
warn(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object... args)
Log an exception with the specific Marker at the warn level, according to the specified format and arguments.
|
void |
warn(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object arg1)
Log an exception with the specific Marker at the warn level, according to the specified format and arguments.
|
void |
warn(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object arg1,
Object arg2)
Log an exception with the specific Marker at the warn level, according to the specified format and arguments.
|
void |
warn(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object arg1,
Object arg2,
Object arg3)
Log an exception with the specific Marker at the warn level, according to the specified format and arguments.
|
void |
warn(Throwable throwable,
E message)
Log an exception at the warn level.
|
void |
warn(Throwable throwable,
E message,
Object... args)
Log an exception at the warn level, according to the specified format and arguments.
|
void |
warn(Throwable throwable,
E message,
Object arg1)
Log an exception at the warn level, according to the specified format and arguments.
|
void |
warn(Throwable throwable,
E message,
Object arg1,
Object arg2)
Log an exception at the warn level, according to the specified format and arguments.
|
void |
warn(Throwable throwable,
E message,
Object arg1,
Object arg2,
Object arg3)
Log an exception at the warn level, according to the specified format and arguments.
|
debug, debug, error, error, info, info, isDebugEnabled, isDebugEnabled, isEnabled, isEnabled, isErrorEnabled, isErrorEnabled, isInfoEnabled, isInfoEnabled, isTraceEnabled, isTraceEnabled, isWarnEnabled, isWarnEnabled, t, t, trace, trace, warn, warnprotected final CLocLogConfiguration locConf
public CLocLogger(org.slf4j.Logger logger)
public CLocLogger(org.slf4j.Logger logger,
CLocLogConfiguration conf)
public void trace(E message)
message - the message string to be loggedpublic void trace(E message, Object... args)
message - the format stringargs - an array of argumentspublic void trace(E message, Object arg1)
message - the format stringarg1 - argument 1public void trace(E message, Object arg1, Object arg2)
message - the format stringarg1 - argument 1arg2 - argument 2public void trace(E message, Object arg1, Object arg2, Object arg3)
message - the format stringarg1 - argument 1arg2 - argument 2arg3 - argument 3public void trace(Throwable throwable, E message)
throwable - the throwable to logmessage - the message string to be loggedpublic void trace(Throwable throwable, E message, Object... args)
throwable - the throwable to logmessage - the format stringargs - an array of argumentspublic void trace(Throwable throwable, E message, Object arg1)
throwable - the throwable to logmessage - the format stringarg1 - argument 1public void trace(Throwable throwable, E message, Object arg1, Object arg2)
throwable - the throwable to logmessage - the format stringarg1 - argument 1arg2 - argument 2public void trace(Throwable throwable, E message, Object arg1, Object arg2, Object arg3)
throwable - the throwable to logmessage - the format stringarg1 - argument 1arg2 - argument 2arg3 - argument 3public void trace(org.slf4j.Marker marker,
E message)
marker - the marker data specific to this log statementmessage - the message string to be loggedpublic void trace(org.slf4j.Marker marker,
E message,
Object... args)
marker - the marker data specific to this log statementmessage - the format stringargs - an array of argumentspublic void trace(org.slf4j.Marker marker,
E message,
Object arg1)
marker - the marker data specific to this log statementmessage - the format stringarg1 - argument 1public void trace(org.slf4j.Marker marker,
E message,
Object arg1,
Object arg2)
marker - the marker data specific to this log statementmessage - the format stringarg1 - argument 1arg2 - argument 2public void trace(org.slf4j.Marker marker,
E message,
Object arg1,
Object arg2,
Object arg3)
marker - the marker data specific to this log statementmessage - the format stringarg1 - argument 1arg2 - argument 2arg3 - argument 3public void trace(org.slf4j.Marker marker,
Throwable throwable,
E message)
marker - the marker data specific to this log statementthrowable - the throwable to logmessage - the message string to be loggedpublic void trace(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object... args)
marker - the marker data specific to this log statementthrowable - the throwable to logmessage - the format stringargs - an array of argumentspublic void trace(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object arg1)
marker - the marker data specific to this log statementthrowable - the throwable to logmessage - the format stringarg1 - argument 1public void trace(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object arg1,
Object arg2)
marker - the marker data specific to this log statementthrowable - the throwable to logmessage - the format stringarg1 - argument 1arg2 - argument 2public void trace(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object arg1,
Object arg2,
Object arg3)
marker - the marker data specific to this log statementthrowable - the throwable to logmessage - the format stringarg1 - argument 1arg2 - argument 2arg3 - argument 3public void debug(E message)
message - the message string to be loggedpublic void debug(E message, Object... args)
message - the format stringargs - an array of argumentspublic void debug(E message, Object arg1)
message - the format stringarg1 - argument 1public void debug(E message, Object arg1, Object arg2)
message - the format stringarg1 - argument 1arg2 - argument 2public void debug(E message, Object arg1, Object arg2, Object arg3)
message - the format stringarg1 - argument 1arg2 - argument 2arg3 - argument 3public void debug(Throwable throwable, E message)
throwable - the throwable to logmessage - the message string to be loggedpublic void debug(Throwable throwable, E message, Object... args)
throwable - the throwable to logmessage - the format stringargs - an array of argumentspublic void debug(Throwable throwable, E message, Object arg1)
throwable - the throwable to logmessage - the format stringarg1 - argument 1public void debug(Throwable throwable, E message, Object arg1, Object arg2)
throwable - the throwable to logmessage - the format stringarg1 - argument 1arg2 - argument 2public void debug(Throwable throwable, E message, Object arg1, Object arg2, Object arg3)
throwable - the throwable to logmessage - the format stringarg1 - argument 1arg2 - argument 2arg3 - argument 3public void debug(org.slf4j.Marker marker,
E message)
marker - the marker data specific to this log statementmessage - the message string to be loggedpublic void debug(org.slf4j.Marker marker,
E message,
Object... args)
marker - the marker data specific to this log statementmessage - the format stringargs - an array of argumentspublic void debug(org.slf4j.Marker marker,
E message,
Object arg1)
marker - the marker data specific to this log statementmessage - the format stringarg1 - argument 1public void debug(org.slf4j.Marker marker,
E message,
Object arg1,
Object arg2)
marker - the marker data specific to this log statementmessage - the format stringarg1 - argument 1arg2 - argument 2public void debug(org.slf4j.Marker marker,
E message,
Object arg1,
Object arg2,
Object arg3)
marker - the marker data specific to this log statementmessage - the format stringarg1 - argument 1arg2 - argument 2arg3 - argument 3public void debug(org.slf4j.Marker marker,
Throwable throwable,
E message)
marker - the marker data specific to this log statementthrowable - the throwable to logmessage - the message string to be loggedpublic void debug(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object... args)
marker - the marker data specific to this log statementthrowable - the throwable to logmessage - the format stringargs - an array of argumentspublic void debug(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object arg1)
marker - the marker data specific to this log statementthrowable - the throwable to logmessage - the format stringarg1 - argument 1public void debug(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object arg1,
Object arg2)
marker - the marker data specific to this log statementthrowable - the throwable to logmessage - the format stringarg1 - argument 1arg2 - argument 2public void debug(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object arg1,
Object arg2,
Object arg3)
marker - the marker data specific to this log statementthrowable - the throwable to logmessage - the format stringarg1 - argument 1arg2 - argument 2arg3 - argument 3public void info(E message)
message - the message string to be loggedpublic void info(E message, Object... args)
message - the format stringargs - an array of argumentspublic void info(E message, Object arg1)
message - the format stringarg1 - argument 1public void info(E message, Object arg1, Object arg2)
message - the format stringarg1 - argument 1arg2 - argument 2public void info(E message, Object arg1, Object arg2, Object arg3)
message - the format stringarg1 - argument 1arg2 - argument 2arg3 - argument 3public void info(Throwable throwable, E message)
throwable - the throwable to logmessage - the message string to be loggedpublic void info(Throwable throwable, E message, Object... args)
throwable - the throwable to logmessage - the format stringargs - an array of argumentspublic void info(Throwable throwable, E message, Object arg1)
throwable - the throwable to logmessage - the format stringarg1 - argument 1public void info(Throwable throwable, E message, Object arg1, Object arg2)
throwable - the throwable to logmessage - the format stringarg1 - argument 1arg2 - argument 2public void info(Throwable throwable, E message, Object arg1, Object arg2, Object arg3)
throwable - the throwable to logmessage - the format stringarg1 - argument 1arg2 - argument 2arg3 - argument 3public void info(org.slf4j.Marker marker,
E message)
marker - the marker data specific to this log statementmessage - the message string to be loggedpublic void info(org.slf4j.Marker marker,
E message,
Object... args)
marker - the marker data specific to this log statementmessage - the format stringargs - an array of argumentspublic void info(org.slf4j.Marker marker,
E message,
Object arg1)
marker - the marker data specific to this log statementmessage - the format stringarg1 - argument 1public void info(org.slf4j.Marker marker,
E message,
Object arg1,
Object arg2)
marker - the marker data specific to this log statementmessage - the format stringarg1 - argument 1arg2 - argument 2public void info(org.slf4j.Marker marker,
E message,
Object arg1,
Object arg2,
Object arg3)
marker - the marker data specific to this log statementmessage - the format stringarg1 - argument 1arg2 - argument 2arg3 - argument 3public void info(org.slf4j.Marker marker,
Throwable throwable,
E message)
marker - the marker data specific to this log statementthrowable - the throwable to logmessage - the message string to be loggedpublic void info(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object... args)
marker - the marker data specific to this log statementthrowable - the throwable to logmessage - the format stringargs - an array of argumentspublic void info(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object arg1)
marker - the marker data specific to this log statementthrowable - the throwable to logmessage - the format stringarg1 - argument 1public void info(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object arg1,
Object arg2)
marker - the marker data specific to this log statementthrowable - the throwable to logmessage - the format stringarg1 - argument 1arg2 - argument 2public void info(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object arg1,
Object arg2,
Object arg3)
marker - the marker data specific to this log statementthrowable - the throwable to logmessage - the format stringarg1 - argument 1arg2 - argument 2arg3 - argument 3public void warn(E message)
message - the message string to be loggedpublic void warn(E message, Object... args)
message - the format stringargs - an array of argumentspublic void warn(E message, Object arg1)
message - the format stringarg1 - argument 1public void warn(E message, Object arg1, Object arg2)
message - the format stringarg1 - argument 1arg2 - argument 2public void warn(E message, Object arg1, Object arg2, Object arg3)
message - the format stringarg1 - argument 1arg2 - argument 2arg3 - argument 3public void warn(Throwable throwable, E message)
throwable - the throwable to logmessage - the message string to be loggedpublic void warn(Throwable throwable, E message, Object... args)
throwable - the throwable to logmessage - the format stringargs - an array of argumentspublic void warn(Throwable throwable, E message, Object arg1)
throwable - the throwable to logmessage - the format stringarg1 - argument 1public void warn(Throwable throwable, E message, Object arg1, Object arg2)
throwable - the throwable to logmessage - the format stringarg1 - argument 1arg2 - argument 2public void warn(Throwable throwable, E message, Object arg1, Object arg2, Object arg3)
throwable - the throwable to logmessage - the format stringarg1 - argument 1arg2 - argument 2arg3 - argument 3public void warn(org.slf4j.Marker marker,
E message)
marker - the marker data specific to this log statementmessage - the message string to be loggedpublic void warn(org.slf4j.Marker marker,
E message,
Object... args)
marker - the marker data specific to this log statementmessage - the format stringargs - an array of argumentspublic void warn(org.slf4j.Marker marker,
E message,
Object arg1)
marker - the marker data specific to this log statementmessage - the format stringarg1 - argument 1public void warn(org.slf4j.Marker marker,
E message,
Object arg1,
Object arg2)
marker - the marker data specific to this log statementmessage - the format stringarg1 - argument 1arg2 - argument 2public void warn(org.slf4j.Marker marker,
E message,
Object arg1,
Object arg2,
Object arg3)
marker - the marker data specific to this log statementmessage - the format stringarg1 - argument 1arg2 - argument 2arg3 - argument 3public void warn(org.slf4j.Marker marker,
Throwable throwable,
E message)
marker - the marker data specific to this log statementthrowable - the throwable to logmessage - the message string to be loggedpublic void warn(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object... args)
marker - the marker data specific to this log statementthrowable - the throwable to logmessage - the format stringargs - an array of argumentspublic void warn(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object arg1)
marker - the marker data specific to this log statementthrowable - the throwable to logmessage - the format stringarg1 - argument 1public void warn(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object arg1,
Object arg2)
marker - the marker data specific to this log statementthrowable - the throwable to logmessage - the format stringarg1 - argument 1arg2 - argument 2public void warn(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object arg1,
Object arg2,
Object arg3)
marker - the marker data specific to this log statementthrowable - the throwable to logmessage - the format stringarg1 - argument 1arg2 - argument 2arg3 - argument 3public void error(E message)
message - the message string to be loggedpublic void error(E message, Object... args)
message - the format stringargs - an array of argumentspublic void error(E message, Object arg1)
message - the format stringarg1 - argument 1public void error(E message, Object arg1, Object arg2)
message - the format stringarg1 - argument 1arg2 - argument 2public void error(E message, Object arg1, Object arg2, Object arg3)
message - the format stringarg1 - argument 1arg2 - argument 2arg3 - argument 3public void error(Throwable throwable, E message)
throwable - the throwable to logmessage - the message string to be loggedpublic void error(Throwable throwable, E message, Object... args)
throwable - the throwable to logmessage - the format stringargs - an array of argumentspublic void error(Throwable throwable, E message, Object arg1)
throwable - the throwable to logmessage - the format stringarg1 - argument 1public void error(Throwable throwable, E message, Object arg1, Object arg2)
throwable - the throwable to logmessage - the format stringarg1 - argument 1arg2 - argument 2public void error(Throwable throwable, E message, Object arg1, Object arg2, Object arg3)
throwable - the throwable to logmessage - the format stringarg1 - argument 1arg2 - argument 2arg3 - argument 3public void error(org.slf4j.Marker marker,
E message)
marker - the marker data specific to this log statementmessage - the message string to be loggedpublic void error(org.slf4j.Marker marker,
E message,
Object... args)
marker - the marker data specific to this log statementmessage - the format stringargs - an array of argumentspublic void error(org.slf4j.Marker marker,
E message,
Object arg1)
marker - the marker data specific to this log statementmessage - the format stringarg1 - argument 1public void error(org.slf4j.Marker marker,
E message,
Object arg1,
Object arg2)
marker - the marker data specific to this log statementmessage - the format stringarg1 - argument 1arg2 - argument 2public void error(org.slf4j.Marker marker,
E message,
Object arg1,
Object arg2,
Object arg3)
marker - the marker data specific to this log statementmessage - the format stringarg1 - argument 1arg2 - argument 2arg3 - argument 3public void error(org.slf4j.Marker marker,
Throwable throwable,
E message)
marker - the marker data specific to this log statementthrowable - the throwable to logmessage - the message string to be loggedpublic void error(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object... args)
marker - the marker data specific to this log statementthrowable - the throwable to logmessage - the format stringargs - an array of argumentspublic void error(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object arg1)
marker - the marker data specific to this log statementthrowable - the throwable to logmessage - the format stringarg1 - argument 1public void error(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object arg1,
Object arg2)
marker - the marker data specific to this log statementthrowable - the throwable to logmessage - the format stringarg1 - argument 1arg2 - argument 2public void error(org.slf4j.Marker marker,
Throwable throwable,
E message,
Object arg1,
Object arg2,
Object arg3)
marker - the marker data specific to this log statementthrowable - the throwable to logmessage - the format stringarg1 - argument 1arg2 - argument 2arg3 - argument 3public void log(CLogLevel level, E message)
level - the log levelmessage - the message string to be loggedpublic void log(CLogLevel level, E message, Object... args)
level - the log levelmessage - the format stringargs - an array of argumentspublic void log(CLogLevel level, E message, Object arg1)
level - the log levelmessage - the format stringarg1 - argument 1public void log(CLogLevel level, E message, Object arg1, Object arg2)
level - the log levelmessage - the format stringarg1 - argument 1arg2 - argument 2public void log(CLogLevel level, E message, Object arg1, Object arg2, Object arg3)
level - the log levelmessage - the format stringarg1 - argument 1arg2 - argument 2arg3 - argument 3public void log(CLogLevel level, Throwable throwable, E message)
level - the log levelthrowable - the throwable to logmessage - the message string to be loggedpublic void log(CLogLevel level, Throwable throwable, E message, Object... args)
level - the log levelthrowable - the throwable to logmessage - the format stringargs - an array of argumentspublic void log(CLogLevel level, Throwable throwable, E message, Object arg1)
level - the log levelthrowable - the throwable to logmessage - the format stringarg1 - argument 1public void log(CLogLevel level, Throwable throwable, E message, Object arg1, Object arg2)
level - the log levelthrowable - the throwable to logmessage - the format stringarg1 - argument 1arg2 - argument 2public void log(CLogLevel level, Throwable throwable, E message, Object arg1, Object arg2, Object arg3)
level - the log levelthrowable - the throwable to logmessage - the format stringarg1 - argument 1arg2 - argument 2arg3 - argument 3public void log(CLogLevel level, org.slf4j.Marker marker, E message)
level - the log levelmarker - the marker data specific to this log statementmessage - the message string to be loggedpublic void log(CLogLevel level, org.slf4j.Marker marker, E message, Object... args)
level - the log levelmarker - the marker data specific to this log statementmessage - the format stringargs - an array of argumentspublic void log(CLogLevel level, org.slf4j.Marker marker, E message, Object arg1)
level - the log levelmarker - the marker data specific to this log statementmessage - the format stringarg1 - argument 1public void log(CLogLevel level, org.slf4j.Marker marker, E message, Object arg1, Object arg2)
level - the log levelmarker - the marker data specific to this log statementmessage - the format stringarg1 - argument 1arg2 - argument 2public void log(CLogLevel level, org.slf4j.Marker marker, E message, Object arg1, Object arg2, Object arg3)
level - the log levelmarker - the marker data specific to this log statementmessage - the format stringarg1 - argument 1arg2 - argument 2arg3 - argument 3public void log(CLogLevel level, org.slf4j.Marker marker, Throwable throwable, E message)
level - the log levelmarker - the marker data specific to this log statementthrowable - the throwable to logmessage - the message string to be loggedpublic void log(CLogLevel level, org.slf4j.Marker marker, Throwable throwable, E message, Object... args)
level - the log levelmarker - the marker data specific to this log statementthrowable - the throwable to logmessage - the format stringargs - an array of argumentspublic void log(CLogLevel level, org.slf4j.Marker marker, Throwable throwable, E message, Object arg1)
level - the log levelmarker - the marker data specific to this log statementthrowable - the throwable to logmessage - the format stringarg1 - argument 1public void log(CLogLevel level, org.slf4j.Marker marker, Throwable throwable, E message, Object arg1, Object arg2)
level - the log levelmarker - the marker data specific to this log statementthrowable - the throwable to logmessage - the format stringarg1 - argument 1arg2 - argument 2public void log(CLogLevel level, org.slf4j.Marker marker, Throwable throwable, E message, Object arg1, Object arg2, Object arg3)
level - the log levelmarker - the marker data specific to this log statementthrowable - the throwable to logmessage - the format stringarg1 - argument 1arg2 - argument 2arg3 - argument 3Copyright © 2013. All Rights Reserved.