From 0cf28cf9237270857278ef9a3c3d96c907c01240 Mon Sep 17 00:00:00 2001 From: rusefillc Date: Mon, 4 Apr 2022 20:21:05 -0400 Subject: [PATCH] Log4j errors fix #4044 --- .../src/main/java/com/devexperts/logging/Logging.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java_console/logging-api/src/main/java/com/devexperts/logging/Logging.java b/java_console/logging-api/src/main/java/com/devexperts/logging/Logging.java index 10afe1c54f..fbf2f86b29 100644 --- a/java_console/logging-api/src/main/java/com/devexperts/logging/Logging.java +++ b/java_console/logging-api/src/main/java/com/devexperts/logging/Logging.java @@ -190,7 +190,7 @@ public class Logging { // failed to configure with passed class name impl = null; if (!(t instanceof LinkageError) && !(t.getCause() instanceof LinkageError)) { - errors.put(className + " link", new IllegalStateException(t)); +// errors.put(className + " link", new IllegalStateException(t)); } } }