Skip to content

Commit

Permalink
fix LOGBACK-LOGBACK-1690
Browse files Browse the repository at this point in the history
Signed-off-by: Ceki Gulcu <ceki@qos.ch>
  • Loading branch information
ceki committed Oct 2, 2022
1 parent 6f588fe commit b247624
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Expand Up @@ -49,7 +49,6 @@ public static <T> List<T> loadFromServiceLoader(Class<T> c, ClassLoader classLoa
Iterator<T> it = loader.iterator();
while(it.hasNext()) {
T t = it.next();
System.out.println("loaded "+t);
listOfT.add(t);
}
return listOfT;
Expand Down
Expand Up @@ -92,7 +92,6 @@ public void autoConfig(ClassLoader classLoader) throws JoranException {
fallbackOnToBasicConfigurator();
return;
}
configuratorList.forEach(c -> System.out.println("Found "+c.toString()));
for (Configurator c : configuratorList) {
try {
c.setContext(loggerContext);
Expand Down

0 comments on commit b247624

Please sign in to comment.