]> git.mxchange.org Git - jfinancials-ejb.git/commitdiff
Don't cherry-pick:
authorRoland Häder <roland@mxchange.org>
Fri, 22 Sep 2017 21:06:03 +0000 (23:06 +0200)
committerRoland Häder <roland@mxchange.org>
Fri, 22 Sep 2017 21:06:03 +0000 (23:06 +0200)
- ops, added missing list size to format() parameter list

Signed-off-by: Roland Häder <roland@mxchange.org>
src/java/org/mxchange/jfinancials/model/receipt/FinancialReceiptSessionBean.java

index 293a3217d786929e9bf51d69a6d1c38b8ceb48db..8b4b615e0e16acb1996cf050bdbb270b60cd1087 100644 (file)
@@ -103,7 +103,7 @@ public class FinancialReceiptSessionBean extends BaseFinancialsDatabaseBean impl
                final List<BillableReceipt> receipts = query.getResultList();
 
                // Trace message
-               this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.allReceipts(): receipts.size()={1} EXIT!", this.getClass().getSimpleName()));
+               this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.allReceipts(): receipts.size()={1} EXIT!", this.getClass().getSimpleName(), receipts.size()));
 
                // Return it
                return receipts;
@@ -137,7 +137,7 @@ public class FinancialReceiptSessionBean extends BaseFinancialsDatabaseBean impl
                final List<BillableReceipt> receipts = query.getResultList();
 
                // Trace message
-               this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.allUsersReceipts(): receipts.size()={1} EXIT!", this.getClass().getSimpleName()));
+               this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.allUsersReceipts(): receipts.size()={1} EXIT!", this.getClass().getSimpleName(), receipts.size()));
 
                // Return it
                return receipts;