Skip to content

Commit b247624

Browse files
committed
fix LOGBACK-LOGBACK-1690
Signed-off-by: Ceki Gulcu <[email protected]>
1 parent 6f588fe commit b247624

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

logback-classic/src/main/java/ch/qos/logback/classic/util/ClassicEnvUtil.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ public static <T> List<T> loadFromServiceLoader(Class<T> c, ClassLoader classLoa
4949
Iterator<T> it = loader.iterator();
5050
while(it.hasNext()) {
5151
T t = it.next();
52-
System.out.println("loaded "+t);
5352
listOfT.add(t);
5453
}
5554
return listOfT;

logback-classic/src/main/java/ch/qos/logback/classic/util/ContextInitializer.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ public void autoConfig(ClassLoader classLoader) throws JoranException {
9292
fallbackOnToBasicConfigurator();
9393
return;
9494
}
95-
configuratorList.forEach(c -> System.out.println("Found "+c.toString()));
9695
for (Configurator c : configuratorList) {
9796
try {
9897
c.setContext(loggerContext);

0 commit comments

Comments
 (0)