diff --git a/neutron/agent/l3/agent.py b/neutron/agent/l3/agent.py index a3f63b82b87..48fb5bdf8ed 100644 --- a/neutron/agent/l3/agent.py +++ b/neutron/agent/l3/agent.py @@ -516,7 +516,10 @@ class L3NATAgent(ha.AgentMixin, def network_update(self, context, **kwargs): network_id = kwargs['network']['id'] + LOG.debug("Got network %s update", network_id) for ri in self.router_info.values(): + LOG.debug("Checking if router %s is plugged to the network %s", + ri, network_id) ports = list(ri.internal_ports) if ri.ex_gw_port: ports.append(ri.ex_gw_port)