log.fatal("Not bound on any sockets, aborting startup!");
return;
}
log.debug("Starting secondary zone update timer...");
this.timerTask = new RunnableTimerTask(this);
this.secondaryZoneUpdateTimer = new Timer();
this.secondaryZoneUpdateTimer.schedule(timerTask, MillisecondTimeUnits.SECOND * 60, MillisecondTimeUnits.SECOND * 60);
log.info(VERSION + " started with " + this.primaryZoneMap.size() + " primary zones and " + this.secondaryZoneMap.size() + " secondary zones");
}