Skip to content

Commit

Permalink
ARTEMIS-3356: fix debug message arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
michpetrov authored and jbertram committed Jul 4, 2021
1 parent 07331f9 commit 33e13eb
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -253,8 +253,8 @@ public synchronized List<PagedMessage> read(StorageManager storage) throws Excep

public synchronized List<PagedMessage> read(StorageManager storage, boolean onlyLargeMessages) throws Exception {
if (logger.isDebugEnabled()) {
logger.debugf("reading page %d on address = %s onlyLargeMessages = %b", storeName, pageId,
storage, onlyLargeMessages);
logger.debugf("reading page %d on address = %s onlyLargeMessages = %b",
new Object[] {pageId, storeName, onlyLargeMessages});
}

if (!file.isOpen()) {
Expand Down

0 comments on commit 33e13eb

Please sign in to comment.