Skip to content
This repository has been archived by the owner on Dec 7, 2019. It is now read-only.

Commit

Permalink
remove deprecated log.Warning(f)
Browse files Browse the repository at this point in the history
Part of the work to unblock: ipfs/go-log#65
  • Loading branch information
lanzafame committed Oct 29, 2019
1 parent cdbee45 commit 19d58fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion id.go
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ func (ids *IDService) ResponseHandler(s inet.Stream) {
r := ggio.NewDelimitedReader(s, 2048)
mes := pb.Identify{}
if err := r.ReadMsg(&mes); err != nil {
log.Warning("error reading identify message: ", err)
log.Warn("error reading identify message: ", err)
return
}
ids.consumeMessage(&mes, c)
Expand Down

0 comments on commit 19d58fe

Please sign in to comment.