What I hope is a trivial query:
I use the @Configurable annotation with certain domain objects and, therefore, start the JVM with the AspectJ Weaver:
And I keep getting the following warning from log4j:Code:java -javaagent:%path%/lib/aspectjweaver.jar
Yet my log4j.properties file does register the following loggers (among others):Code:log4j:WARN No appenders could be found for logger (AspectJ Weaver). log4j:WARN Please initialize the log4j system properly.
So what is the root class which I need to register as logger in order to log AspectJ's work?Code:log4j.logger.org.aspectj=debug, stdout, file log4j.logger.org.springframework=info, stdout, file


Reply With Quote