Details
-
Bug
-
Resolution: Unresolved
-
Major
-
None
-
1.3.0-alpha4
-
None
-
Windows 10, Java 8, Running in JUnit tests in IntelliJ
Description
LoggerContext provides an ExecutorService. I am using this to start a TCP appender similar to the one provided by logback.
Context context = new LoggerContext();ExecutorService ses = context.getExecutorService();ses.submit(() -> System.out.println("ScheduledExecutorService running"));
Would print the text.
Running with 1.3.0-alpha4 version, the lambda is no longer executed
N.B. context.getExecutorService() has been deprecated the same applies to context.getScheduledExecutorService()