Method from org.slf4j.impl.SimpleLogger Detail: |
public void debug(String msg) {
// NOP
}
A NOP implementation, as this logger is permanently disabled for
the DEBUG level. |
public void debug(String format,
Object param1) {
// NOP
}
A NOP implementation, as this logger is permanently disabled for
the DEBUG level. |
public void debug(String format,
Object[] argArray) {
// NOP
}
|
public void debug(String msg,
Throwable t) {
// NOP
}
A NOP implementation, as this logger is permanently disabled for
the DEBUG level. |
public void debug(String format,
Object param1,
Object param2) {
// NOP
}
A NOP implementation, as this logger is permanently disabled for
the DEBUG level. |
public void error(String msg) {
log(ERROR_STR, msg, null);
}
A simple implementation which always logs messages of level ERROR according
to the format outlined above. |
public void error(String format,
Object arg) {
formatAndLog(ERROR_STR, format, arg, null);
}
Perform single parameter substitution before logging the message of level
ERROR according to the format outlined above. |
public void error(String format,
Object[] argArray) {
formatAndLog(ERROR_STR, format, argArray);
}
Perform double parameter substitution before logging the message of level
ERROR according to the format outlined above. |
public void error(String msg,
Throwable t) {
log(ERROR_STR, msg, t);
}
Log a message of level ERROR, including an exception. |
public void error(String format,
Object arg1,
Object arg2) {
formatAndLog(ERROR_STR, format, arg1, arg2);
}
Perform double parameter substitution before logging the message of level
ERROR according to the format outlined above. |
public void info(String msg) {
log(INFO_STR, msg, null);
}
A simple implementation which always logs messages of level INFO according
to the format outlined above. |
public void info(String format,
Object arg) {
formatAndLog(INFO_STR, format, arg, null);
}
Perform single parameter substitution before logging the message of level
INFO according to the format outlined above. |
public void info(String format,
Object[] argArray) {
formatAndLog(INFO_STR, format, argArray);
}
Perform double parameter substitution before logging the message of level
INFO according to the format outlined above. |
public void info(String msg,
Throwable t) {
log(INFO_STR, msg, t);
}
Log a message of level INFO, including an exception. |
public void info(String format,
Object arg1,
Object arg2) {
formatAndLog(INFO_STR, format, arg1, arg2);
}
Perform double parameter substitution before logging the message of level
INFO according to the format outlined above. |
public boolean isDebugEnabled() {
return false;
}
|
public boolean isErrorEnabled() {
return true;
}
|
public boolean isInfoEnabled() {
return true;
}
|
public boolean isTraceEnabled() {
return false;
}
|
public boolean isWarnEnabled() {
return true;
}
|
public void trace(String msg) {
// NOP
}
A NOP implementation, as this logger is permanently disabled for
the TRACE level. |
public void trace(String format,
Object param1) {
// NOP
}
A NOP implementation, as this logger is permanently disabled for
the TRACE level. |
public void trace(String format,
Object[] argArray) {
// NOP
}
|
public void trace(String msg,
Throwable t) {
// NOP
}
A NOP implementation, as this logger is permanently disabled for
the TRACE level. |
public void trace(String format,
Object param1,
Object param2) {
// NOP
}
A NOP implementation, as this logger is permanently disabled for
the TRACE level. |
public void warn(String msg) {
log(WARN_STR, msg, null);
}
A simple implementation which always logs messages of level WARN according
to the format outlined above. |
public void warn(String format,
Object arg) {
formatAndLog(WARN_STR, format, arg, null);
}
Perform single parameter substitution before logging the message of level
WARN according to the format outlined above. |
public void warn(String format,
Object[] argArray) {
formatAndLog(WARN_STR, format, argArray);
}
Perform double parameter substitution before logging the message of level
WARN according to the format outlined above. |
public void warn(String msg,
Throwable t) {
log(WARN_STR, msg, t);
}
Log a message of level WARN, including an exception. |
public void warn(String format,
Object arg1,
Object arg2) {
formatAndLog(WARN_STR, format, arg1, arg2);
}
Perform double parameter substitution before logging the message of level
WARN according to the format outlined above. |