Skip to content

Commit

Permalink
change Log Level from WARNING to INFO for RelationalStatus.UP_TO_DATE
Browse files Browse the repository at this point in the history
fix for #96
  • Loading branch information
SparklingComet authored Dec 13, 2020
1 parent 7026bd4 commit 2bec31f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/shanerx/tradeshop/utils/Updater.java
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public RelationalStatus checkCurrentVersion() {
in.close();
return RelationalStatus.AHEAD;
} else {
log.log(Level.WARNING, "[Updater] You are running the latest version of the plugin!");
log.log(Level.INFO, "[Updater] You are running the latest version of the plugin!");
in.close();
return RelationalStatus.UP_TO_DATE;
}
Expand Down Expand Up @@ -190,4 +190,4 @@ public enum RelationalStatus {
BEHIND,
UNKNOWN
}
}
}

0 comments on commit 2bec31f

Please sign in to comment.