Is there any way not to execute a line in a method using spring AOP ?
Hi,
Is there any way not to execute a line in a method using spring AOP ?
Scenario : I have an application where we have some unnecessary logging which are undesirable. The culprit is a class where I have bunch of logging statements such as log.info and in the prod environment I don't have access to this class but I have access to the spring config xml. Can I apply an aspect to the class/in particular a method to stop executing the log.info statements ?
Thanks in advance
Gourab