checkstyle correction

Former-commit-id: b04b910c546a0ff7f58ca8cfe1f8a3afd06a4d62
This commit is contained in:
Jeremy Long
2013-06-16 07:43:54 -04:00
parent f18827614d
commit ce1c097136

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, "Unable to generate the report, the report template file could not be found.");
final String msg = "Unable to generate the report, the report template file could not be found.";
Logger.getLogger(ReportGenerator.class.getName()).log(Level.SEVERE, msg);
Logger.getLogger(ReportGenerator.class.getName()).log(Level.FINE, null, ex);
}
} else {