minor update to logged message

Former-commit-id: d00002337ca34c75d1c193473fbe69af4145d7cc
This commit is contained in:
Jeremy Long
2013-10-20 21:25:25 -04:00
parent 5aa876da72
commit 557f491a7e

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) {