Skip to content

Commit 0b27a55

Browse files
committed
refactor(torrent): simplify style in HasMissingFiles
1 parent 8b02762 commit 0b27a55

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

config/torrent.go

+2-4
Original file line numberDiff line numberDiff line change
@@ -157,13 +157,11 @@ func (t *Torrent) HasMissingFiles() bool {
157157
continue
158158
}
159159

160-
_, err := os.Stat(f)
161-
if err != nil {
160+
if _, err := os.Stat(f); err != nil {
162161
if os.IsNotExist(err) {
163-
//log.Debugf("Missing file detected: %s for torrent: %s", f, t.Name)
164162
return true
165163
}
166-
log.Warnf("Error checking file %s for torrent %s: %v", f, t.Name, err)
164+
log.Warnf("error checking file '%s' for torrent '%s': %v", f, t.Name, err)
167165
continue
168166
}
169167
}

0 commit comments

Comments
 (0)