Skip to content

Commit

Permalink
replacing System.out.println(); with server logger
Browse files Browse the repository at this point in the history
  • Loading branch information
Sherko231 committed Jun 16, 2024
1 parent 55ce36a commit 6ac3c33
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ private byte[] readAllBytes(ZipFile jar, ZipEntry encryptionKeyEntry) {
}
data = buffer.toByteArray();
} catch (IOException e) {
Server.getInstance().getLogger().error("An error occurred while reading the data: " + e.getMessage());
Server.getInstance().getLogger().error("An error occurred while reading the data: " + e);
}
return data;
}
Expand Down

0 comments on commit 6ac3c33

Please sign in to comment.