]> git.mxchange.org Git - pizzaservice-ejb.git/commitdiff
Please cherry-pick:
authorRoland Häder <roland@mxchange.org>
Sat, 26 Aug 2017 22:17:51 +0000 (00:17 +0200)
committerRoland Häder <roland@mxchange.org>
Sat, 26 Aug 2017 22:18:25 +0000 (00:18 +0200)
- renamed method

Signed-off-by: Roland Häder <roland@mxchange.org>
src/java/org/mxchange/jcontactsbusiness/basicdata/PizzaBusinessDataSessionBean.java

index d6ab8f081b6732f4fcce9caf3d32cfa5cb0b7487..d2d2657067645eb2dffe2db29ff092e2c3aa8354 100644 (file)
@@ -56,7 +56,7 @@ public class PizzaBusinessDataSessionBean extends BasePizzaDatabaseBean implemen
        @Override
        public BusinessBasicData findBasicDataById (final Long companyDataId) throws BusinessDataNotFoundException {
                // Trace message
-               this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.findBusinessDataById: CALLED!", this.getClass().getSimpleName())); //NOI18N
+               this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.findBasicDataById: CALLED!", this.getClass().getSimpleName())); //NOI18N
 
                // Get query
                Query query = this.getEntityManager().createNamedQuery("SearchBusinessDataById", CompanyBasicData.class); //NOI18N
@@ -73,14 +73,14 @@ public class PizzaBusinessDataSessionBean extends BasePizzaDatabaseBean implemen
                        businessData = (BusinessBasicData) query.getSingleResult();
 
                        // Log trace message
-                       this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.findBusinessDataById: Found contact={1}", this.getClass().getSimpleName(), businessData)); //NOI18N
+                       this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.findBasicDataById: Found contact={1}", this.getClass().getSimpleName(), businessData)); //NOI18N
                } catch (final NoResultException ex) {
                        // No result found
                        throw new BusinessDataNotFoundException(companyDataId, ex);
                }
 
                // Trace message
-               this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.findBusinessDataById: businessData={1} - EXIT!", this.getClass().getSimpleName(), businessData)); //NOI18N
+               this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.findBasicDataById: businessData={1} - EXIT!", this.getClass().getSimpleName(), businessData)); //NOI18N
 
                // Return it
                return businessData;