From: Matt Joiner Date: Sun, 3 Mar 2019 03:30:46 +0000 (+1100) Subject: Fix double quoting in a log statement X-Git-Tag: v1.1.0~8 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=c639cce605c5dfa1c2d186400b570c2d37d0e532;p=btrtrc.git Fix double quoting in a log statement --- diff --git a/reader.go b/reader.go index 07eefc87..a5ea62f2 100644 --- a/reader.go +++ b/reader.go @@ -225,7 +225,8 @@ func (r *reader) readOnceAt(b []byte, pos int64, ctxErr *error) (n int, err erro r.t.cl.lock() // TODO: Just reset pieces in the readahead window. This might help // prevent thrashing with small caches and file and piece priorities. - log.Printf("error reading torrent %q piece %d offset %d, %d bytes: %s", r.t, pi, po, len(b1), err) + log.Printf("error reading torrent %s piece %d offset %d, %d bytes: %s", + r.t.infoHash.HexString(), pi, po, len(b1), err) r.t.updateAllPieceCompletions() r.t.updateAllPiecePriorities() r.t.cl.unlock()