updated exception logging message

Former-commit-id: 206fd2354786aa53db3024b94a7ac4120c28f900
This commit is contained in:
Jeremy Long
2013-05-18 09:00:34 -04:00
parent dd444f5f76
commit 9966eec1df

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);
}
}