Skip to content

Commit

Permalink
Fix LogUtil using wrong log methods
Browse files Browse the repository at this point in the history
  • Loading branch information
SamB440 committed Jul 20, 2024
1 parent c4e5916 commit 4616c0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/ac/grim/grimac/utils/anticheat/LogUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ public void info(final String info) {
}

public void warn(final String warn) {
getLogger().info(warn);
getLogger().warning(warn);
}

public void error(final String error) {
getLogger().info(error);
getLogger().severe(error);
}

public Logger getLogger() {
Expand Down

0 comments on commit 4616c0a

Please sign in to comment.