Skip to content

Commit

Permalink
Go vet updates
Browse files Browse the repository at this point in the history
  • Loading branch information
oxtoacart committed Dec 6, 2014
1 parent d4cc22e commit 2c4ea5a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion server.go
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ func (p *peer) readNext() (ok bool) {
to, err := readPeerId(msg)
if err != nil {
// Problem determining recipient
log.Errorf("Unable to determine recipient: ", err.Error())
log.Errorf("Unable to determine recipient: %s", err.Error())
return true
}
cto := p.server.getPeer(to)
Expand Down
2 changes: 1 addition & 1 deletion topic.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ func (t *topic) processOut() {
}
info := t.client.getConnInfo()
if info.err != nil {
log.Errorf("Unable to get connection to waddell, stop sending to %s: %s", t.id, info.err)
log.Errorf("Unable to get connection to waddell, stop sending to %d: %s", t.id, info.err)
t.client.Close()
return
}
Expand Down

0 comments on commit 2c4ea5a

Please sign in to comment.