Skip to content

Commit

Permalink
Fixed debug message of SET_BONUS_LEVEL showing incorrect method name
Browse files Browse the repository at this point in the history
  • Loading branch information
OmerBenGera committed Oct 14, 2022
1 parent 7a69da4 commit d8a2536
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -2058,7 +2058,7 @@ public BigDecimal getBonusLevel() {
public void setBonusLevel(BigDecimal bonusLevel) {
Preconditions.checkNotNull(bonusLevel, "bonusLevel parameter cannot be null.");

Log.debug(Debug.SET_BONUS_LEVEL, "SIsland", "setBonusWorth", owner.getName(), bonusLevel);
Log.debug(Debug.SET_BONUS_LEVEL, "SIsland", "setBonusLevel", owner.getName(), bonusLevel);

this.bonusLevel.set(bonusLevel);

Expand Down

0 comments on commit d8a2536

Please sign in to comment.