Commit 06ed262f authored by Matthias Rampke's avatar Matthias Rampke

Restore "Setting endpoints" log message

The "Setting endpoints" message from kube-proxy at high verbosity was lost as part of a larger simplification in kubernetes/kubernetes#42747. This change brings it back, simply outputting the just-constructed addresses list.
parent 2d66f7bd
......@@ -671,6 +671,7 @@ func accumulateEndpointsMap(endpoints *api.Endpoints, hostname string,
}
(*newEndpoints)[svcPort] = append((*newEndpoints)[svcPort], epInfo)
}
glog.V(3).Infof("Setting endpoints for %q to %+v", svcPort, (*newEndpoints)[svcPort])
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment