Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Mikusa <[email protected]>
  • Loading branch information
dmikusa committed Nov 9, 2024
1 parent 149556f commit ca5dc45
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion carton/package.go
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,8 @@ func (p Package) Create(options ...Option) {

f, err := cache.Artifact(dep, n.BasicAuth)
if err != nil {
config.exitHandler.Error(fmt.Errorf("unable to download %s\n%w", dep.URI, err))
logger.Debugf("fetching dependency %s failed\n%w", dep.Name, err)
config.exitHandler.Error(fmt.Errorf("unable to download %s. see DEBUG log level", dep.Name))
return
}
if err = f.Close(); err != nil {
Expand Down

0 comments on commit ca5dc45

Please sign in to comment.