Archived
1
0

Adding messages are not shown in default verbose

This commit is contained in:
Jip J. Dekker 2016-05-03 16:30:06 +02:00
parent d1bd9d3e6a
commit f84ff44d47

View File

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