Skip to content

Commit 1e463d0

Browse files
committed
fix(dot/network): public IP address logging
1 parent e7207ed commit 1e463d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dot/network/host.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ func newHost(ctx context.Context, cfg *Config) (*host, error) {
111111
if err != nil {
112112
logger.Errorf("failed to get public IP error: %v", err)
113113
} else {
114-
logger.Debugf("got public IP", "IP", ip)
114+
logger.Debugf("got public IP address %s", ip)
115115
externalAddr, err = ma.NewMultiaddr(fmt.Sprintf("/ip4/%s/tcp/%d", ip, cfg.Port))
116116
if err != nil {
117117
return nil, err

0 commit comments

Comments
 (0)