Added accessor for default registry

This commit is contained in:
Collin Smith 2020-08-27 22:57:13 -07:00
parent 14f78e0ca3
commit 05d4c935c5

View File

@ -7,6 +7,10 @@ public class LogManager {
public static final String ROOT = StringUtils.EMPTY;
public static LoggerRegistry getRegistry() {
return INSTANCE;
}
public static Logger getLogger(Class<?> clazz) {
return INSTANCE.getLogger(clazz);
}