]> git.mxchange.org Git - addressbook-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:35:47 +0000 (13:35 +0200)
- also log class' name

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

index 895fbcd187917f3b61a0082bd10eaff59285cb30..04db7dd0ad36fbb8d8c9a7ddc0cb88cc27532314 100644 (file)
@@ -106,7 +106,7 @@ public class AddressbookMailerSingletonBean extends BaseMailerBean implements De
        @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 AddressbookMailerSingletonBean extends BaseMailerBean implements De
                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
        }
 
 }