From a6ff1561e1f140cc6968771b25626859feb017f0 Mon Sep 17 00:00:00 2001 From: "Jip J. Dekker" Date: Sat, 19 Mar 2016 17:30:31 +0100 Subject: [PATCH] Move ignore messages to the debug output --- compiler/file_discovery.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/file_discovery.go b/compiler/file_discovery.go index 3ffee43..474b2ac 100644 --- a/compiler/file_discovery.go +++ b/compiler/file_discovery.go @@ -43,7 +43,7 @@ func compilePath(root string, opts *settings.Settings, helpers.Check(err, "Unable to create relative Path") for _, dir := range append(append(opts.IgnoreDirs, opts.LilypondIncludes...), opts.OutputDir) { if relPath == dir || (filepath.IsAbs(dir) && path == dir) { - log.WithFields(log.Fields{"path": path}).Info("Ignoring directory") + log.WithFields(log.Fields{"path": path}).Debug("Ignoring directory") return filepath.SkipDir } }