Skip to content

Commit

Permalink
fix(dot/network): public IP address logging (#2140)
Browse files Browse the repository at this point in the history
  • Loading branch information
qdm12 committed Jan 5, 2022
1 parent d95a19e commit 9e21587
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dot/network/host.go
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ func newHost(ctx context.Context, cfg *Config) (*host, error) {
if err != nil {
logger.Errorf("failed to get public IP error: %v", err)
} else {
logger.Debugf("got public IP", "IP", ip)
logger.Debugf("got public IP address %s", ip)
externalAddr, err = ma.NewMultiaddr(fmt.Sprintf("/ip4/%s/tcp/%d", ip, cfg.Port))
if err != nil {
return nil, err
Expand Down

0 comments on commit 9e21587

Please sign in to comment.