# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
nbproject/build-impl.xml.data.CRC32=22b87e48
nbproject/build-impl.xml.script.CRC32=3a74a7eb
-nbproject/build-impl.xml.stylesheet.CRC32=6096d939@1.51.1
+nbproject/build-impl.xml.stylesheet.CRC32=6096d939@1.55.1
/**
* Produces a logger instance
* <p>
- * @param caller Injection point
+ * @param injectionPoint Injection point
* <p>
* @return Logger
*/
@Produces
@Log
- public Logger getLogger (final InjectionPoint caller) {
- this.logger.trace(MessageFormat.format("caller={0} - CALLED!", caller));
- return LogManager.getLogger(caller.getMember().getDeclaringClass().getName());
+ public Logger getLogger (final InjectionPoint injectionPoint) {
+ this.logger.trace(MessageFormat.format("injectionPoint={0} - CALLED!", injectionPoint));
+ return LogManager.getLogger(injectionPoint.getMember().getDeclaringClass().getName());
}
}