ARTEMIS-3356: fix debug message arguments
This commit is contained in:
parent
07331f9aa9
commit
33e13ebc14
|
@ -253,8 +253,8 @@ public final class Page implements Comparable<Page> {
|
|||
|
||||
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()) {
|
||||
|
|
Loading…
Reference in New Issue