*/
public static void main(final String[] args) { // CSIGNORE
s_logger.info("Updating example database");
try (GUIFeedback feedback = new GUIFeedback("Updating simulated historical time series database")) {
if (!new SimulatedHistoricalDataUpdater(feedback).initAndRun(args, TOOLCONTEXT_EXAMPLE_PROPERTIES, null, ToolContext.class)) {
feedback.done("Could not update the time-series database - check that the server has been started");
} else {
System.exit(0);
}
} catch (final Exception ex) {
GUIFeedback.shout(ex.getClass().getSimpleName() + " - " + ex.getMessage());