Skip to content
This repository has been archived by the owner on Sep 9, 2022. It is now read-only.

Commit

Permalink
Merge pull request #53 from libp2p/fix/log-raw-binary
Browse files Browse the repository at this point in the history
Don't log raw binary
  • Loading branch information
vyzo authored Dec 19, 2018
2 parents eb8694d + 398ef18 commit 5a7b5c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion listen.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func (l *RelayListener) Accept() (manet.Conn, error) {
}

// TODO: Pretty print.
log.Infof("accepted relay connection: %s", c)
log.Infof("accepted relay connection: %q", c)

return c, nil
case <-l.ctx.Done():
Expand Down

0 comments on commit 5a7b5c7

Please sign in to comment.