Skip to content
This repository has been archived by the owner on Nov 11, 2024. It is now read-only.

1938 - Reduced logging when searching for a file to download. #608

Merged
merged 2 commits into from
Aug 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ private static boolean getArtifact(URL repository, Path localArtifact, String gr
connection.connect();
Files.copy(connection.getInputStream(), localArtifact, StandardCopyOption.REPLACE_EXISTING);
} catch (FileNotFoundException e) {
logger.trace("Release artifact "+ urlRemoteFile+" failed to download. File not found.",e );
logger.trace("Release artifact "+ urlRemoteFile+" failed to download. File not found." );
return false;
} catch (Exception e) {
// Re-throw any exception after tracing it.
Expand Down