Fixed an issue on how loggers are initialized

This commit is contained in:
Isaac Parenteau
2018-09-15 16:00:51 -05:00
parent 16e8ab5eb1
commit 99894f9acd
2 changed files with 10 additions and 6 deletions

View File

@@ -13,7 +13,7 @@ import java.util.stream.Collectors;
*/
public class ApplicationLoggerFactory {
private static Map<String, ApplicationLogger> loggers = new TreeMap<>();
private static LogLevel DEFAULT_LEVEL = null;
private static LogLevel DEFAULT_LEVEL = LogLevel.ALL;
private static ApplicationLoggerInitializer initializer;
/**