I have used spring aop to log method level information in a osgi bundle, with the follwoing expression - com.* (to make sure it logs for all methods under multiple bundles in the application)
unit tests within this osgi bundle were able to log the method details using the aspect, but this bundle when given as a maven dependency to other bunldes, method details are not getting logged ? I am exporting the package that contains the aspect and importing them in the consumers.
What could be the reason ?
should be refer the aspect in the osgi context separately ?
Kindly suggest, Thanks for the help in advance