String root = serverConf.getFirstProperty(
StatisticsConstants.STAT_PERSISTENCE_ROOT);
if (root != null) {
log.info("Enabling mediation statistics persistence. Statistics will be " +
"stored at: " + root);
mediationStatStore.registerObserver(new PersistingStatisticsObserver(root));
} else {
log.warn(StatisticsConstants.STAT_PERSISTENCE_ROOT + " parameter has not " +
"been specified in the server configuration to activate " +
"statistics persistence");
}