Skip to content
This repository has been archived by the owner on Oct 21, 2021. It is now read-only.

Commit

Permalink
Remove debug logs.
Browse files Browse the repository at this point in the history
  • Loading branch information
lucky-fish authored and lucky-fish committed Aug 16, 2020
1 parent fd29c1f commit fdf3d73
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,10 @@ public void onPluginMessage(PluginMessageEvent event) {
ByteArrayDataInput badi = ByteStreams.newDataInput(event.getData());
String method = badi.readUTF();
if (method.equals("add")) {
AntiLeakAccount.getInstance().getLogger().info("Added verified player");
ps.addVerifiedUuid(new UUID(badi.readLong(), badi.readLong()));
}

if (method.equals("fetch")) {
AntiLeakAccount.getInstance().getLogger().info("Fetching player");
UUID uid = new UUID(badi.readLong(), badi.readLong());
boolean success = ps.isUuidVerified(uid);

Expand Down

0 comments on commit fdf3d73

Please sign in to comment.