Skip to content

Commit

Permalink
Make elevation-based miss logging debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Sleet01 committed Feb 21, 2025
1 parent 24f5d27 commit d402405
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion megamek/src/megamek/server/totalwarfare/TWGameManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -31522,7 +31522,7 @@ public Vector<Integer> artilleryDamageHex(Coords coords,
StringBuilder msg = new StringBuilder("Missed due to elevation difference: ")
.append("entity lvl/ht: ").append(hex.getLevel()).append("/").append(entity.getElevation())
.append("; current blast level: ").append(altitude);
logger.warn(msg.toString());
logger.debug(msg.toString());
// We now track the blast on a per-level basis
continue;
}
Expand Down

0 comments on commit d402405

Please sign in to comment.