Using an Aspect for Wrapping Method Logging
Overview A good practice when developing your Java code is to log the entry and exit of your class methods for purposes of debugging. The challenge is that logging the entry and exit of every method is time-consuming, not only during initial method creation but also during re-factoring. How can...