fix: rm debug print

This commit is contained in:
ReaJason
2025-11-20 00:36:25 +08:00
parent a2de3a3808
commit dee1c4a5d0
@@ -195,7 +195,6 @@ public class TomcatListenerInjector {
}
method.setAccessible(true);
System.out.println(method.getDeclaringClass().getName() + "@" + String.valueOf(obj.hashCode()).substring(0, 4) + "." + methodName + " invoked");
return method.invoke(obj instanceof Class ? null : obj, param);
} catch (Exception e) {
throw new RuntimeException("Error invoking method: " + methodName, e);