From 4319b3e6aec58f7cf02a6d9608a7a4eea9de26f0 Mon Sep 17 00:00:00 2001 From: rusefillc Date: Mon, 4 Apr 2022 21:05:33 -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 fbf2f86b29..62b833fef2 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 @@ -217,7 +217,7 @@ public class Logging { // failed to configure log4j2 impl = null; if (!(t instanceof LinkageError) && !(t.getCause() instanceof LinkageError)) { - errors.put("log4j2 link", new IllegalStateException(t)); + //errors.put("log4j2 link", new IllegalStateException(t)); } } }