Skip to content

Commit

Permalink
Use correct logging method
Browse files Browse the repository at this point in the history
  • Loading branch information
snikch committed Aug 17, 2015
1 parent 1a59118 commit 0acce03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion payload.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func (p *payload) deliver() error {
func (p *payload) deliverOrLog() {
err := p.deliver()
if err != nil {
fmt.Println(err)
p.log("bugsnag.deliver: %v", err)
}
}

Expand Down

0 comments on commit 0acce03

Please sign in to comment.