I\'m having problems getting my logging aspect to log information when methods from classes of a particular package are accessed. In other words, \"no\" logging occurs. I even
Your point cut, execution( * org.my.package.*.*(..)), is only matching the execution of methods on classes in the org.my.packagepackage not sub packages.
What you probably want is execution( * org.my.package..*.*(..)) notice the .. instead of ..