From 9bb8a327c0a94e150ba0651e63d5b3e45b2fed78 Mon Sep 17 00:00:00 2001 From: Matt Joiner Date: Wed, 21 Nov 2018 17:05:30 +1100 Subject: [PATCH] Remove log that used missinggo.CryHeard --- torrent.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/torrent.go b/torrent.go index 154b83c6..6a455e1f 100644 --- a/torrent.go +++ b/torrent.go @@ -1516,9 +1516,6 @@ func (t *Torrent) addConnection(c *connection) (err error) { if c == nil { return errors.New("don't want conns") } - if t.cl.config.Debug && missinggo.CryHeard() { - log.Printf("%s: dropping connection to make room for new one:\n %v", t, c) - } c.Close() t.deleteConnection(c) }