Skip to content

Commit

Permalink
Change log level for not found archives from ERROR to WARN (#1099)
Browse files Browse the repository at this point in the history
  • Loading branch information
dwalluck authored Jun 28, 2024
1 parent f6ad494 commit d4c7a6f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1469,7 +1469,7 @@ private static Set<LicenseInfo> addLicensesToBuilds(
localArchive.getLicenses().addAll(licenseInfos);
allLicenses.addAll(licenseInfos);
} else {
LOGGER.error("No matching archive found for file {}", boldRed(filename));
LOGGER.warn("No matching archive found for file {}", red(filename));
}
}

Expand Down

0 comments on commit d4c7a6f

Please sign in to comment.