From f84ff44d472864aa64703e9fb561a3c58e02368e Mon Sep 17 00:00:00 2001 From: "Jip J. Dekker" Date: Tue, 3 May 2016 16:30:06 +0200 Subject: [PATCH] Adding messages are not shown in default verbose --- compiler/compile.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/compile.go b/compiler/compile.go index e4d1130..131cbd2 100644 --- a/compiler/compile.go +++ b/compiler/compile.go @@ -80,7 +80,7 @@ func generateScores() func(string, os.FileInfo) error { ) switch filepath.Ext(path) { case ".ly": - log.WithFields(log.Fields{"path": path}).Info("adding lilypond file") + log.WithFields(log.Fields{"path": path}).Debug("adding lilypond file") score, err = settings.FromLy(path) if score != nil { score.LastModified = file.ModTime() @@ -88,7 +88,7 @@ func generateScores() func(string, os.FileInfo) error { case ".json": if filepath.Base(path) != "ponder.json" { - log.WithFields(log.Fields{"path": path}).Info("adding json file") + log.WithFields(log.Fields{"path": path}).Debug("adding json file") score, err = settings.FromJSON(path) score.LastModified = helpers.LastModified(score.Path) }