printStackTrace to LOGGER

This commit is contained in:
brenoepic 2022-04-28 20:19:49 -03:00
parent 1a932f6955
commit 61acf1ec59

View File

@ -160,7 +160,7 @@ public class ForumDataMessageComposer extends MessageComposer {
this.response.appendBoolean(guild.getOwnerId() == this.habbo.getHabboInfo().getId() || isStaff || isAdmin); //Can Mod (staff) this.response.appendBoolean(guild.getOwnerId() == this.habbo.getHabboInfo().getId() || isStaff || isAdmin); //Can Mod (staff)
} }
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); LOGGER.error("Caught SQL exception", e);
return new ErrorReportComposer(500).compose(); return new ErrorReportComposer(500).compose();
} }