From 3ef59be02d4387f60feafabbb2c5f1a8fb7f788c Mon Sep 17 00:00:00 2001 From: Matt Joiner Date: Wed, 22 Jul 2015 19:07:01 +1000 Subject: [PATCH] fs: Remove errant logging --- fs/torrentfs.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/fs/torrentfs.go b/fs/torrentfs.go index 0c83974e..ea2ae4e9 100644 --- a/fs/torrentfs.go +++ b/fs/torrentfs.go @@ -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 { -- 2.48.1