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 {
|
public synchronized List<PagedMessage> read(StorageManager storage, boolean onlyLargeMessages) throws Exception {
|
||||||
if (logger.isDebugEnabled()) {
|
if (logger.isDebugEnabled()) {
|
||||||
logger.debugf("reading page %d on address = %s onlyLargeMessages = %b", storeName, pageId,
|
logger.debugf("reading page %d on address = %s onlyLargeMessages = %b",
|
||||||
storage, onlyLargeMessages);
|
new Object[] {pageId, storeName, onlyLargeMessages});
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!file.isOpen()) {
|
if (!file.isOpen()) {
|
||||||
|
|
Loading…
Reference in New Issue