Skip to content

Commit 76661e4

Browse files
authored
Removed log for download url (#179)
* Removed log for download url * Updated warning message
1 parent b60cb41 commit 76661e4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

filedownloader/filedownloader.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,8 @@ func (downloader FileDownloader) GetWithFallback(destination, source string, fal
4444
for _, source := range sources {
4545
err := downloader.Get(destination, source)
4646
if err != nil {
47-
log.Errorf("Could not download file from: %s", err)
47+
log.Warnf("Could not download file (%s): %s", source, err)
4848
} else {
49-
log.Infof("URL used to download file: %s", source)
5049
return nil
5150
}
5251
}

0 commit comments

Comments
 (0)