Skip to content

Commit

Permalink
refactor: Remove debug logging in locked clip detection
Browse files Browse the repository at this point in the history
Remove unnecessary log statement in isLockedClip function to clean up logging
  • Loading branch information
tphakala committed Feb 16, 2025
1 parent 8c08c61 commit 98d1553
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion internal/diskmanager/file_utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,6 @@ func isLockedClip(path string, lockedClips []string) bool {
filename := filepath.Base(path)
for _, lockedPath := range lockedClips {
if filepath.Base(lockedPath) == filename {
log.Printf("Locked clip found: %s", path)
return true
}
}
Expand Down

0 comments on commit 98d1553

Please sign in to comment.