String logDirName =
(String)context.getConfiguration().getEntry(CONFIG_COMPONENT, "logDirectory", String.class, null);
if(logDirName!=null) {
/* LogHandler required when dealing with the ReliableLog */
CybernodeLogHandler logHandler = new CybernodeLogHandler();
store = new PersistentStore(logDirName, logHandler, logHandler);
logger.debug("Cybernode: using absolute logdir path [{}]", store.getStoreLocation());
store.snapshot();
super.initialize(context, store);
} else {
super.initialize(context);