updated log message to assist in debugging an issue

This commit is contained in:
Jeremy Long
2016-04-09 06:38:37 -04:00
parent d4a6c58cc8
commit b5c7fb747c

View File

@@ -743,7 +743,7 @@ public final class Settings {
try {
value = Integer.parseInt(Settings.getString(key));
} catch (NumberFormatException ex) {
LOGGER.trace("Could not convert property '{}' to an int.", key, ex);
LOGGER.trace("Could not convert property '{}={}' to an int.", key, Settings.getString(key));
value = defaultValue;
}
return value;