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
When I upgrade the log4j2 version to 2.24.2, multiple test classes report an error. Here is the link: apache/logging-log4j2#3284
While executing InternalLoggerRegistry class(log4j2), the following code is run:
final Map<String, WeakReference<Logger>> loggerRefByName =
loggerRefByNameByMessageFactory.computeIfAbsent(messageFactory, ignored -> new HashMap<>());
I found that loggerRefByName seems to have its bytecode modified and returns null. How can I make JMockit and log4j2 not interfere with each other?
The text was updated successfully, but these errors were encountered:
When I upgrade the log4j2 version to 2.24.2, multiple test classes report an error. Here is the link:
apache/logging-log4j2#3284
While executing InternalLoggerRegistry class(log4j2), the following code is run:
I found that loggerRefByName seems to have its bytecode modified and returns null. How can I make JMockit and log4j2 not interfere with each other?
The text was updated successfully, but these errors were encountered: