mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-22 04:08:49 +02:00
chore: make output less verbose
This commit is contained in:
parent
71df84f829
commit
71171ba222
@ -116,7 +116,7 @@ func (artifacts *Artifacts) Add(a Artifact) {
|
||||
"name": a.Name,
|
||||
"path": a.Path,
|
||||
"type": a.Type,
|
||||
}).Info("added new artifact")
|
||||
}).Debug("added new artifact")
|
||||
artifacts.items = append(artifacts.items, a)
|
||||
}
|
||||
|
||||
|
@ -28,7 +28,7 @@ import (
|
||||
type Pipe struct{}
|
||||
|
||||
func (Pipe) String() string {
|
||||
return "setting defaults for:"
|
||||
return "setting defaults"
|
||||
}
|
||||
|
||||
// Defaulter can be implemented by a Piper to set default values for its
|
||||
@ -67,7 +67,7 @@ func (Pipe) Run(ctx *context.Context) error {
|
||||
ctx.Config.GitHubURLs.Download = "https://github.com"
|
||||
}
|
||||
for _, defaulter := range defaulters {
|
||||
log.Info(defaulter.String())
|
||||
log.Debug(defaulter.String())
|
||||
if err := defaulter.Default(ctx); err != nil {
|
||||
return err
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user