From: Matt Joiner Date: Mon, 3 Aug 2015 15:33:50 +0000 (+1000) Subject: Improve log message X-Git-Tag: v1.0.0~1082 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=92e1e505b417d74393c4e25f33256d8901f96803;p=btrtrc.git Improve log message --- diff --git a/client.go b/client.go index 8760c283..a885eb60 100644 --- a/client.go +++ b/client.go @@ -1742,7 +1742,7 @@ func (me *Client) addConnection(t *torrent, c *connection) bool { if c == nil { return false } - log.Printf("%s: dropping connection to make room for new one: %s", t, c) + log.Printf("%s: dropping connection to make room for new one:\n %s", t, c) c.Close() me.deleteConnection(t, c) }