Skip to content

Commit

Permalink
Fix logging message template in RocksStore
Browse files Browse the repository at this point in the history
### What changes are proposed in this pull request?

Fix logging message template in RocksStore
Fixes Alluxio/Community#615

pr-link: #14621
change-id: cid-f1429eb8f00d3c3f1b67e556f40e08f1f98ebc70
  • Loading branch information
Rongrong Zhong committed Dec 8, 2021
1 parent 992699b commit 46116a7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public synchronized void clear() {
} catch (RocksDBException e) {
throw new RuntimeException(e);
}
LOG.info("Cleared store at %s", mDbPath);
LOG.info("Cleared store at {}", mDbPath);
}

private void resetDb() throws RocksDBException {
Expand Down Expand Up @@ -217,6 +217,6 @@ public synchronized void restoreFromCheckpoint(CheckpointInputStream input) thro
@Override
public synchronized void close() {
stopDb();
LOG.info("Closed store at %s", mDbPath);
LOG.info("Closed store at {}", mDbPath);
}
}

0 comments on commit 46116a7

Please sign in to comment.