1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Fix debug statement in startResolver

Signed-off-by: John Howard <jhoward@microsoft.com>
This commit is contained in:
John Howard 2017-07-17 14:35:16 -07:00
parent f6163048e1
commit 738fc5201b

View file

@ -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]