updated logging

Former-commit-id: 665f57b1a1aca0ab8b2ee5a370ef17089d00c813
This commit is contained in:
Jeremy Long
2013-06-16 06:36:14 -04:00
parent 4558b49c1b
commit e362632477

View File

@@ -194,7 +194,8 @@ public class ReportGenerator {
templatePath = templateName;
input = new FileInputStream(f);
} catch (FileNotFoundException ex) {
Logger.getLogger(ReportGenerator.class.getName()).log(Level.SEVERE, null, ex);
Logger.getLogger(ReportGenerator.class.getName()).log(Level.SEVERE, "Unable to generate the report, the report template file could not be found.");
Logger.getLogger(ReportGenerator.class.getName()).log(Level.FINE, "Unable to generate the report, the report template file could not be found.", ex);
}
} else {
templatePath = "templates/" + templateName + ".vsl";