No-operation implementation of Logger used by NOPLoggerRepository.
| Method from org.apache.log4j.spi.NOPLogger Detail: |
public void addAppender(Appender newAppender) {
}
|
public void assertLog(boolean assertion,
String msg) {
}
|
public void callAppenders(LoggingEvent event) {
}
|
void closeNestedAppenders() {
}
|
public void debug(Object message) {
}
|
public void debug(Object message,
Throwable t) {
}
|
public void error(Object message) {
}
|
public void error(Object message,
Throwable t) {
}
|
public void fatal(Object message) {
}
|
public void fatal(Object message,
Throwable t) {
}
|
public Enumeration getAllAppenders() {
return new Vector().elements();
}
|
public Appender getAppender(String name) {
return null;
}
|
public Priority getChainedPriority() {
return getEffectiveLevel();
}
|
public Level getEffectiveLevel() {
return Level.OFF;
}
|
public ResourceBundle getResourceBundle() {
return null;
}
|
public void info(Object message) {
}
|
public void info(Object message,
Throwable t) {
}
|
public boolean isAttached(Appender appender) {
return false;
}
|
public boolean isDebugEnabled() {
return false;
}
|
public boolean isEnabledFor(Priority level) {
return false;
}
|
public boolean isInfoEnabled() {
return false;
}
|
public boolean isTraceEnabled() {
return false;
}
|
public void l7dlog(Priority priority,
String key,
Throwable t) {
}
|
public void l7dlog(Priority priority,
String key,
Object[] params,
Throwable t) {
}
|
public void log(Priority priority,
Object message) {
}
|
public void log(Priority priority,
Object message,
Throwable t) {
}
|
public void log(String callerFQCN,
Priority level,
Object message,
Throwable t) {
}
|
public void removeAllAppenders() {
}
|
public void removeAppender(Appender appender) {
}
|
public void removeAppender(String name) {
}
|
public void setLevel(Level level) {
}
|
public void setPriority(Priority priority) {
}
|
public void setResourceBundle(ResourceBundle bundle) {
}
|
public void trace(Object message) {
}
|
public void trace(Object message,
Throwable t) {
}
|
public void warn(Object message) {
}
|
public void warn(Object message,
Throwable t) {
}
|