Skip to content

Commit

Permalink
refactor: Remove debug logging in GetAudioFiles function
Browse files Browse the repository at this point in the history
  • Loading branch information
tphakala committed May 28, 2024
1 parent 240eef1 commit eda3be4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/diskmanager/priority.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ func GetAudioFiles(baseDir string, allowedExts []string, debug bool) ([]FileInfo
if err != nil {
return err
}
if debug {
/*if debug {
log.Printf("Found file: %s, Species: %s, Confidence: %d, Timestamp: %s", fileInfo.Path, fileInfo.Species, fileInfo.Confidence, fileInfo.Timestamp)
}
}*/
files = append(files, fileInfo)
}
}
Expand Down

0 comments on commit eda3be4

Please sign in to comment.