Improve log message

This commit is contained in:
Matt Joiner 2015-08-04 01:33:50 +10:00
parent 85a0fe6b61
commit 92e1e505b4
1 changed files with 1 additions and 1 deletions

View File

@ -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)
}