Downgrade network not found log in DHCP RPC

This is a normal occurence as networks are created and
deleted. It's not something that an operator should be
warned about.

Change-Id: I3bb498a29d93a88b059a669d510d21b4c65ea014
Closes-Bug: #1554695
This commit is contained in:
Kevin Benton 2016-03-08 11:48:01 -08:00
parent 48649d83aa
commit 0db4ba3f85

@ -156,8 +156,8 @@ class DhcpRpcCallback(object):
try:
network = plugin.get_network(context, network_id)
except n_exc.NetworkNotFound:
LOG.warn(_LW("Network %s could not be found, it might have "
"been deleted concurrently."), network_id)
LOG.debug("Network %s could not be found, it might have "
"been deleted concurrently.", network_id)
return
filters = dict(network_id=[network_id])
network['subnets'] = plugin.get_subnets(context, filters=filters)