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

Merge pull request #1844 from jhowardmsft/jjh/correctdebugstatement

Fix debug statement in startResolver
This commit is contained in:
Madhu Venugopal 2017-07-17 15:30:51 -07:00 committed by GitHub
commit 7db7a01ea1

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]