Skip to content

Commit

Permalink
dns: make a debug message more descriptive
Browse files Browse the repository at this point in the history
Signed-off-by: Akihiro Suda <[email protected]>
  • Loading branch information
AkihiroSuda committed Aug 12, 2023
1 parent d41c316 commit 9cc6044
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 9cc6044

Please sign in to comment.