Topic: enterMethod with arguments not working as expected in java
I expected that 'enterMethod(Object instance, String methodName, Object[] args)' will be logged as 'mypackage.myclass.methodName(args)', but it seems that the arguments aren't logged. I don't see the problem in my code:
private void setAutoBuild(boolean value) {
session.enterMethod(this, "setAutoBuild", new Object[] { value });
....
session.leaveMethod(this, "setAutoBuild");
}It results in the simple log entry 'de.se_elektronic.ixPert.eddc.VariableSynchronizer.setAutoBuild' without arguments. Any suggestions?
