Commit af3a25f1 authored by Jakub Sztandera's avatar Jakub Sztandera Committed by GitHub

Merge pull request #18 from marten-seemann/dial-info-logging

fix logging of dial errors
parents 220eccc6 1e0e79e8
......@@ -318,7 +318,7 @@ func (s *Swarm) dialAddrs(ctx context.Context, p peer.ID, remoteAddrs <-chan ma.
case resp := <-respch:
active--
if resp.Err != nil {
log.Info("got error on dial to %s: ", resp.Addr, resp.Err)
log.Infof("got error on dial to %s: %s", resp.Addr, resp.Err)
// Errors are normal, lots of dials will fail
exitErr = resp.Err
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment