Skip to content

Commit

Permalink
Game client warnings: Update warning for "found broken maps" to be si…
Browse files Browse the repository at this point in the history
…lent. (#12755)

The pop-up on every game launch without a button to delete the map is annoying..
  • Loading branch information
DanVanAtta authored Jul 23, 2024
1 parent 9e1167b commit 74cf57a
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,10 @@ boolean isValid(final Path sourceFile) {
}

if (!validationErrors.isEmpty()) {
log.warn("Error found in: {}, errors: {}", sourceFile.toAbsolutePath(), validationErrors);
log.info(
"Warning: invalid map found installed: {}, errors: {}",
sourceFile.toAbsolutePath(),
validationErrors);
}

return validationErrors.isEmpty();
Expand Down

0 comments on commit 74cf57a

Please sign in to comment.