Skip to content

Commit

Permalink
fix: lower logging level in SotSManager
Browse files Browse the repository at this point in the history
  • Loading branch information
gentlespoon authored and Melledy committed May 6, 2022
1 parent 39c932b commit e319fd7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public void autoRecover(GameSession session) {
// TODO: In MP, respect SotS settings from the host.
boolean isAutoRecoveryEnabled = getIsAutoRecoveryEnabled();
int autoRecoverPercentage = getAutoRecoveryPercentage();
Grasscutter.getLogger().warn("isAutoRecoveryEnabled: " + isAutoRecoveryEnabled + "\tautoRecoverPercentage: " + autoRecoverPercentage);
Grasscutter.getLogger().debug("isAutoRecoveryEnabled: " + isAutoRecoveryEnabled + "\tautoRecoverPercentage: " + autoRecoverPercentage);

if (isAutoRecoveryEnabled) {
player.getTeamManager().getActiveTeam().forEach(entity -> {
Expand Down

0 comments on commit e319fd7

Please sign in to comment.