
com.ardikars.common.logging.NoLoggerFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-logging Show documentation
Show all versions of common-logging Show documentation
Java Common is an project focused on all aspects of reusable Java components.
The newest version!
package com.ardikars.common.logging;
import com.ardikars.common.annotation.Incubating;
@Incubating
class NoLoggerFactory extends LoggerFactory {
private static final LoggerFactory INSTANCE = new NoLoggerFactory();
public static LoggerFactory getInstance() {
return INSTANCE;
}
@Override
Logger newInstance(String name) {
return new NoLogger(name);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy