Skip to content

Commit

Permalink
Correct a debug message.
Browse files Browse the repository at this point in the history
  • Loading branch information
afshin committed Jul 4, 2016
1 parent 608a5e4 commit cd1353f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client.go
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ func (c *Client) Do(req *http.Request) (*http.Response, error) {
return nil, err.(*Error).escalate(errDo)
}
p := services.next()
c.log.Debug("sleuth: %s %s://%s@%s%s", req.Method, scheme, to, p.name, url)
c.log.Debug("sleuth: %s %s via %s", req.Method, url, p.name)
if err = c.node.Whisper(p.node, payload); err != nil {
return nil, newError(errReqWhisper, err.Error())
}
Expand Down

0 comments on commit cd1353f

Please sign in to comment.