minor update to logged message

Former-commit-id: d4a7d9435f654c7a52f426460cd9723bbc16cbcc
This commit is contained in:
Jeremy Long
2013-10-20 21:25:25 -04:00
parent d98ca9d21f
commit 21f8b0b553

View File

@@ -286,9 +286,9 @@ public class Engine {
Logger.getLogger(Engine.class.getName()).log(Level.FINE, msg);
a.initialize();
} catch (Exception ex) {
final String msg = String.format("\"Exception occurred initializing \"%s\".\"", a.getName());
final String msg = String.format("Exception occurred initializing %s.", a.getName());
Logger.getLogger(Engine.class.getName()).log(Level.SEVERE, msg);
Logger.getLogger(Engine.class.getName()).log(Level.INFO, msg, ex);
Logger.getLogger(Engine.class.getName()).log(Level.INFO, null, ex);
try {
a.close();
} catch (Exception ex1) {