Skip to content

Commit

Permalink
info -> warn for log msg informing user that since they selected a li…
Browse files Browse the repository at this point in the history
…nk-local resolver, they'll use a link-local ip address, regardless of what they specifified (#488)
  • Loading branch information
phillip-stephens authored Dec 18, 2024
1 parent a4bf0b8 commit 32f8ca1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/zdns/resolver.go
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ func (r *Resolver) getConnectionInfo(nameServer *NameServer) (*ConnectionInfo, e
}
}
if localAddr != nil {
log.Infof("none of the user-supplied local addresses could connect to name server %s, using local address %s", nameServer.String(), localAddr.String())
log.Warnf("none of the user-supplied local addresses could connect to name server %s, using local address %s", nameServer.String(), localAddr.String())
}
}
if localAddr == nil {
Expand Down

0 comments on commit 32f8ca1

Please sign in to comment.