]> git.mxchange.org Git - jjobs-mailer-ejb.git/commitdiff
Please cherry-pick:
authorRoland Häder <roland@mxchange.org>
Sun, 9 Jul 2017 10:50:14 +0000 (12:50 +0200)
committerRoland Häder <roland@mxchange.org>
Sun, 9 Jul 2017 11:33:24 +0000 (13:33 +0200)
- also log class' name

Signed-off-by: Roland Häder <roland@mxchange.org>
src/java/org/mxchange/jjobs/mailer/model/delivery/JobsMailerSingletonBean.java

index b1ec48b99c235673a66e8218d1100ba66f660dd6..cdcb244b671c9fa06e1cea7c95ec383714578c00 100644 (file)
@@ -106,7 +106,7 @@ public class JobsMailerSingletonBean extends BaseMailerBean implements Deliverab
        @Override
        public void sendDeliverableMail (final WrapableEmailDelivery emailWrapper) throws MessagingException {
                // Log trace message
-               this.getLoggerBeanLocal().logTrace(MessageFormat.format("sendDeliverableMail: emailWrapper={0} - CALLED!", emailWrapper)); //NOI18N
+               this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.sendDeliverableMail: emailWrapper={1} - CALLED!", this.getClass().getSimpleName(), emailWrapper)); //NOI18N
 
                // The parameter must be valid
                if (null == emailWrapper) {
@@ -167,7 +167,7 @@ public class JobsMailerSingletonBean extends BaseMailerBean implements Deliverab
                this.deliverMailWithTemplate(template, context, emailWrapper, this.mailSession);
 
                // Trace message
-               this.getLoggerBeanLocal().logTrace("sendDeliverableMail: EXIT!"); //NOI18N
+               this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.sendDeliverableMail: EXIT!", this.getClass().getSimpleName())); //NOI18N
        }
 
 }