org.slf4j.impl
public class: NOPLoggerFactory [javadoc |
source]
java.lang.Object
org.slf4j.impl.NOPLoggerFactory
All Implemented Interfaces:
org.slf4j.ILoggerFactory
NOPLoggerFactory is an trivial implementation of
ILoggerFactory which always returns the unique instance of
NOPLogger.
Method from org.slf4j.impl.NOPLoggerFactory Summary: |
---|
getLogger |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from org.slf4j.impl.NOPLoggerFactory Detail: |
public Logger getLogger(String name) {
return NOPLogger.NOP_LOGGER;
}
|