From: Roland Häder Date: Fri, 22 Sep 2017 21:06:03 +0000 (+0200) Subject: Don't cherry-pick: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d654f133bc6948fbe249d305e383978e8d058dde;p=jfinancials-ejb.git Don't cherry-pick: - ops, added missing list size to format() parameter list Signed-off-by: Roland Häder --- diff --git a/src/java/org/mxchange/jfinancials/model/receipt/FinancialReceiptSessionBean.java b/src/java/org/mxchange/jfinancials/model/receipt/FinancialReceiptSessionBean.java index 293a321..8b4b615 100644 --- a/src/java/org/mxchange/jfinancials/model/receipt/FinancialReceiptSessionBean.java +++ b/src/java/org/mxchange/jfinancials/model/receipt/FinancialReceiptSessionBean.java @@ -103,7 +103,7 @@ public class FinancialReceiptSessionBean extends BaseFinancialsDatabaseBean impl final List 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 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;