Browse Source

Merge pull request #1844 from jhowardmsft/jjh/correctdebugstatement

Fix debug statement in startResolver
Madhu Venugopal 8 năm trước cách đây
mục cha
commit
7db7a01ea1
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      libnetwork/network_windows.go

+ 1 - 1
libnetwork/network_windows.go

@@ -29,7 +29,7 @@ func executeInCompartment(compartmentID uint32, x func()) {
 
 func (n *network) startResolver() {
 	n.resolverOnce.Do(func() {
-		logrus.Debugf("Launching DNS server for network", n.Name())
+		logrus.Debugf("Launching DNS server for network %q", n.Name())
 		options := n.Info().DriverOptions()
 		hnsid := options[windows.HNSID]