try {
period = Integer.parseInt(periodStr);
} catch (NumberFormatException nfe) {
}
if (period <= 0) {
throw new MetricsException("Invalid period: " + periodStr);
}
setPeriod(period);
this.period = period;
log.info("Log4JMetricsContext." + contextName + ".period=" + period);
}
outputDir = getAttribute(OUTPUT_DIR_PROPERTY);
if (outputDir == null) {
log.warn("Log4JMetricsContext." + contextName + "."+ OUTPUT_DIR_PROPERTY + " is null");
throw new MetricsException("Invalid output directory: " + outputDir);
}
File fOutputDir = new File(outputDir);
if (!fOutputDir.exists()) {
fOutputDir.mkdirs();
}