Change taglib extractor log level to trace

This commit is contained in:
Deluan 2020-09-08 12:54:36 -04:00 committed by Deluan Quintão
parent 4d18212f5d
commit a3ecc41e47
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ func Read(filename string) (map[string]string, error) {
if res != 0 { if res != 0 {
return nil, fmt.Errorf("cannot process %s", filename) return nil, fmt.Errorf("cannot process %s", filename)
} }
log.Debug("TagLib: read tags", "tags", m, "filename", filename) log.Trace("TagLib: read tags", "tags", m, "filename", filename, "id", id)
return m, nil return m, nil
} }