This commit is contained in:
bui 2022-02-04 12:02:01 +01:00
parent 8311b1d01f
commit a339f36467

View file

@ -262,7 +262,11 @@ func parser_visit(path string, f os.FileInfo, err error) error {
}
return nil
}
log.Infof("Ignoring file %s of type %s", path, ftype)
if ftype != DATA_FILES {
log.Infof("Ignoring file %s of type %s", path, ftype)
} else {
log.Debugf("Ignoring file %s of type %s", path, ftype)
}
return nil
}