1
0
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:
Carlos Alexandro Becker 2018-10-05 09:48:00 -03:00 committed by Carlos Alexandro Becker
parent 71df84f829
commit 71171ba222
2 changed files with 3 additions and 3 deletions

View File

@ -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)
}

View File

@ -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
}