1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-03-17 20:47:50 +02:00

fix: make skip message more idiomatic (#3223)

This commit is contained in:
Weslei Juan Novaes Pereira 2022-07-04 21:12:56 -03:00 committed by GitHub
parent f24f1a0a70
commit 5b591c9648
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,7 +16,7 @@ func Handle(action middleware.Action) middleware.Action {
return nil
}
if pipe.IsSkip(err) {
log.WithError(err).Warn("pipe skipped")
log.WithField("reason", err.Error()).Warn("pipe skipped")
return nil
}
return err