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
ILoggerFactory.getDefault().getProvider("default").getLogger(ClassTransformers.class).info("Skipping transformation for {0} to avoid potential logging issues", name);
37
-
returnnull;
35
+
if (name == null || name.contains("MangoLogger") || name.contains("slf4j")) {
36
+
System.out.printf("Skipping transformation for %s to avoid potential logging issues%n", name);
37
+
returnclassData;
38
38
}
39
39
40
+
41
+
finalvarlogger = LOGGER.get(); // single reference at the top
42
+
40
43
if (transformers.isEmpty()) {
41
-
LOGGER.get().info("No transformers registered for class: {0}", name);
42
-
returnnull;
44
+
logger.info("No transformers registered for class: {0}", name);
0 commit comments