Archived
1
0

Move ignore messages to the debug output

This commit is contained in:
Jip J. Dekker 2016-03-19 17:30:31 +01:00
parent 32b6c24692
commit a6ff1561e1

View File

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