fs: Remove errant logging

This commit is contained in:
Matt Joiner 2015-07-22 19:07:01 +10:00
parent 8069573abe
commit 3ef59be02d
1 changed files with 0 additions and 2 deletions

View File

@ -3,7 +3,6 @@ package torrentfs
import (
"expvar"
"fmt"
"log"
"os"
"strings"
"sync"
@ -83,7 +82,6 @@ func blockingRead(ctx context.Context, fs *TorrentFS, t torrent.Torrent, off int
r := t.NewReader()
defer r.Close()
_n, _err = r.ReadAt(p, off)
log.Println(_n, p)
close(readDone)
}()
select {