Skip to content

Commit

Permalink
Merge pull request #1740 from AkihiroSuda/dns-descriptive-debug-log
Browse files Browse the repository at this point in the history
dns: make a debug message more descriptive
  • Loading branch information
AkihiroSuda authored Aug 13, 2023
2 parents fa053a3 + 9cc6044 commit 495271c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/hostagent/dns/dns.go
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ func listenAndServe(network Network, opts ServerOptions) (*dns.Server, error) {
}
s := &dns.Server{Net: string(network), Addr: addr, Handler: h}
go func() {
logrus.Debugf("Start %v server listening on: %v", network, addr)
logrus.Debugf("Start %v DNS listening on: %v", network, addr)
if e := s.ListenAndServe(); e != nil {
panic(e)
}
Expand Down

0 comments on commit 495271c

Please sign in to comment.