/**
* Print last log mark
*/
protected void printLastLogMark() throws IOException {
LastLogMark lastLogMark = getJournal().getLastLogMark();
System.out.println("LastLogMark: Journal Id - " + lastLogMark.getTxnLogId() + "("
+ Long.toHexString(lastLogMark.getTxnLogId()) + ".txn), Pos - "
+ lastLogMark.getTxnLogPosition());
}