Skip to content

Commit

Permalink
chore: log all flow-build-info.json locations (#20787)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcollovati authored Jan 2, 2025
1 parent 82f6c04 commit e5ecb7f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -216,9 +216,9 @@ && countInstances(viteGenerated.getPath(), "jar!/") >= 2) {
if (resources.size() > 1) {
String warningMessage = String.format(
"Unable to fully determine correct flow-build-info.%n"
+ "Accepting file '%s' first match of '%s' possible.%n"
+ "Accepting file '%s' first match of '%s' possible (%s).%n"
+ "Please verify flow-build-info file content.",
firstResource.getPath(), resources.size());
firstResource.getPath(), resources.size(), resources);
getLogger().warn(warningMessage);
} else {
String debugMessage = String.format(
Expand Down

0 comments on commit e5ecb7f

Please sign in to comment.