diff --git a/chain/bitcoind_conn.go b/chain/bitcoind_conn.go index 8dafe92..01f01f9 100644 --- a/chain/bitcoind_conn.go +++ b/chain/bitcoind_conn.go @@ -197,6 +197,8 @@ func (c *BitcoindConn) blockEventHandler() { // error to prevent spamming the logs. netErr, ok := err.(net.Error) if ok && netErr.Timeout() { + log.Trace("Re-establishing timed out ZMQ " + + "block connection") continue } @@ -279,6 +281,8 @@ func (c *BitcoindConn) txEventHandler() { // error to prevent spamming the logs. netErr, ok := err.(net.Error) if ok && netErr.Timeout() { + log.Trace("Re-establishing timed out ZMQ " + + "transaction connection") continue }