Skip to content

Commit

Permalink
Log the number of updated classes when applying mappings via the UI
Browse files Browse the repository at this point in the history
  • Loading branch information
Col-E committed May 24, 2024
1 parent fa25523 commit f105bc5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public MappingMenu(@Nonnull WindowManager windowManager,

MappingResults results = mappingApplier.applyToPrimaryResource(parsedMappings);
results.apply();
logger.info("Applied mappings from {}", file.getName());
logger.info("Applied mappings from {} - Updated {} classes", file.getName(), results.getPostMappingPaths().size());
} catch (Exception ex) {
logger.error("Failed to read mappings from {}", file.getName(), ex);
}
Expand Down

0 comments on commit f105bc5

Please sign in to comment.