updated exception logging message

Former-commit-id: a63f99f7eb5ec2dbb60239d10aefd3f4f0387123
This commit is contained in:
Jeremy Long
2013-05-18 09:00:34 -04:00
parent d4084cfe85
commit 300a3211ba

View File

@@ -150,7 +150,7 @@ public final class Settings {
try {
props.load(in);
} catch (IOException ex) {
Logger.getLogger(Settings.class.getName()).log(Level.SEVERE, null, ex);
Logger.getLogger(Settings.class.getName()).log(Level.SEVERE, "Unable to load default settings.", ex);
}
}