The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for slf4a-simple, and others. LoggerFactory is essentially a wrapper around an ILoggerFactory instance bound with LoggerFactory at compile time.
Return a logger named corresponding to the class passed as parameter, using the statically bound ILoggerFactory instance. In case the the clazz parameter differs from the name of the caller as computed internally by SLF4J, a logger name mismatch warning will be printed but only if the slf4j.detectLoggerNameMismatch system property is set to true. By default, this property is not set and no warnings will be printed even in case of a logger name mismatch.
Return a logger named corresponding to the class passed as parameter, using the statically bound ILoggerFactory instance. In case the the clazz parameter differs from the name of the caller as computed internally by SLF4J, a logger name mismatch warning will be printed but only if the slf4j.detectLoggerNameMismatch system property is set to true. By default, this property is not set and no warnings will be printed even in case of a logger name mismatch.