Merge branch 'patch-34' into 'dev'

Update Log & e.printStackTrace removed

See merge request morningstar/Arcturus-Community!235
This commit is contained in:
Beny 2020-10-07 10:29:36 -04:00
commit ae5589d068

View File

@ -72,7 +72,7 @@ public class TextsManager {
public int getInt(String key, Integer defaultValue) {
try {
return Integer.parseInt(this.getValue(key, defaultValue.toString()));
} catch (Exception e) {
} catch (NumberFormatException e) {
LOGGER.error("Caught exception", e);
}
return defaultValue;