]> git.mxchange.org Git - jcore-logger-ejb.git/commitdiff
Changed copyright notice to the FSF, so after my death they will continue my
authorRoland Häder <roland@mxchange.org>
Fri, 22 Dec 2017 23:02:09 +0000 (00:02 +0100)
committerRoland Häder <roland@mxchange.org>
Fri, 22 Dec 2017 23:02:09 +0000 (00:02 +0100)
interests, nice!

Signed-off-by: Roland Häder <roland@mxchange.org>
src/java/log4j2.xml
src/java/org/mxchange/jcoreeelogger/beans/local/logger/LoggerBean.java
src/java/org/mxchange/jcoreeelogger/beans/local/logger/LoggerFactory.java

index 98e9a65f642174f1e53f38823251423cf6e9f0d3..035a65f8b210632c20e5de677f1f02b968f28bed 100644 (file)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
-Copyright (C) 2016, 2017 Roland Häder
+Copyright (C) 2016, 2017 Free Software Foundation
 
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU Affero General Public License as
index e5b63ddf986201dc0e660dc563ef785ae6a6158c..66a3638a903dc18e24a0c2b50bed8a25d972d727 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016, 2017 Roland Häder
+ * Copyright (C) 2016, 2017 Free Software Foundation
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
index 4852559f1c11d0c110db60805496272b8d4f319c..28095ee9bc4746059a77dc16814fcdca57b951bb 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016, 2017 Roland Häder
+ * Copyright (C) 2016, 2017 Free Software Foundation
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -51,7 +51,11 @@ public class LoggerFactory {
        @Produces
        @Log
        public Logger getLogger (final InjectionPoint injectionPoint) {
+               // Trace message
                this.logger.trace(MessageFormat.format("injectionPoint={0} - CALLED!", injectionPoint));
+
+               // Return logger for declaring class
                return LogManager.getLogger(injectionPoint.getMember().getDeclaringClass().getName());
        }
+
 }