Skip to content

Commit 0fc7026

Browse files
committed
remove unnecessary debug logs
1 parent 35733c4 commit 0fc7026

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

docker/core/reconcile.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,6 @@ func (c *Core) getContainerIPsAndSubnets() (map[string]string, error) {
121121
ip := net.ParseIP(es.IPAddress)
122122
if ip != nil {
123123
ret[ip.String()] = es.NetworkID
124-
log.WithField("Container", ctr.Names[0]).WithField("net", es.NetworkID).
125-
WithField("ip", ip.String()).Debug("Appending to es list")
126124
}
127125

128126
if es.IPAMConfig == nil {
@@ -131,8 +129,6 @@ func (c *Core) getContainerIPsAndSubnets() (map[string]string, error) {
131129
ip = net.ParseIP(es.IPAMConfig.IPv4Address)
132130
if ip != nil {
133131
ret[ip.String()] = es.NetworkID
134-
log.WithField("Container", ctr.Names[0]).WithField("net", es.NetworkID).
135-
WithField("ip", ip.String()).Debug("Appending to es list")
136132
}
137133
}
138134
}

0 commit comments

Comments
 (0)