Skip to content

Commit a8584f8

Browse files
committed
remove superflus system.out call
Signed-off-by: Ceki Gulcu <[email protected]>
1 parent 0df4ec1 commit a8584f8

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

logback-core/src/main/java/ch/qos/logback/core/util/ExecutorServiceUtil.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,12 @@ private ThreadFactory makeThreadFactory() {
5555
Method ofVirtualMethod = Thread.class.getMethod("ofVirtual");
5656
Object threadBuilderOfVirtual = ofVirtualMethod.invoke(null);
5757
Method factoryMethod = threadBuilderOfVirtual.getClass().getMethod("factory");
58-
System.out.println("virtual THREAD FACTORY");
5958
return (ThreadFactory) factoryMethod.invoke(threadBuilderOfVirtual);
6059
} catch (NoSuchMethodException | IllegalAccessException | InvocationTargetException e) {
6160
return Executors.defaultThreadFactory();
6261
}
6362

6463
} else {
65-
System.out.println("default THREAD FACTORY");
6664
return Executors.defaultThreadFactory();
6765
}
6866
}

0 commit comments

Comments
 (0)