Removed stacktrace

This commit is contained in:
tastybento 2019-06-01 11:17:51 -07:00
parent dd1b1176ef
commit d38912cb2f

View File

@ -139,14 +139,12 @@ public class MySQLDatabaseHandler<T> extends AbstractJSONDatabaseHandler<T> {
}
} catch (JsonSyntaxException ex) {
plugin.logError(COULD_NOT_LOAD_OBJECT + ex.getMessage());
ex.printStackTrace();
plugin.logError(json);
}
}
}
} catch (Exception e) {
plugin.logError(COULD_NOT_LOAD_OBJECTS + e.getMessage());
e.printStackTrace();
}
return list;
}