1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-11-06 09:09:29 +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

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