You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This reverts commit 25e8f2d, reversing
changes made to e5bc9a2.
Unfortunately, upon additional review we realised that these changes
should not have been accepted. They're a partial implementation of
support for programmatically configuring Logback, implemented in a way
that only works during AOT processing and also potentially makes it
harder for us to implement full support in the future.
Closesgh-34361
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot/src/main/java/org/springframework/boot/logging/logback/LogbackLoggingSystem.java
+4-11Lines changed: 4 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -20,8 +20,6 @@
20
20
importjava.security.CodeSource;
21
21
importjava.security.ProtectionDomain;
22
22
importjava.util.ArrayList;
23
-
importjava.util.Collection;
24
-
importjava.util.Collections;
25
23
importjava.util.List;
26
24
importjava.util.Set;
27
25
importjava.util.logging.ConsoleHandler;
@@ -84,8 +82,6 @@ public class LogbackLoggingSystem extends AbstractLoggingSystem implements BeanF
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot/src/main/java/org/springframework/boot/logging/logback/SpringBootJoranConfigurator.java
-11Lines changed: 0 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,6 @@
26
26
importjava.lang.reflect.Method;
27
27
importjava.lang.reflect.Modifier;
28
28
importjava.util.Collection;
29
-
importjava.util.Collections;
30
29
importjava.util.HashMap;
31
30
importjava.util.HashSet;
32
31
importjava.util.Map;
@@ -79,16 +78,8 @@ class SpringBootJoranConfigurator extends JoranConfigurator {
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot/src/test/java/org/springframework/boot/logging/logback/LogbackLoggingSystemTests.java
0 commit comments