private void checkImageStorageFormatted() throws JournalNotFormattedException {
if (!imageStorage.isFormatted()) {
String msg = "Journal image: " + imageStorage.getSingularStorageDir()
+ " not formatted";
LOG.error(msg);
throw new JournalNotFormattedException(msg);
}
}