summaryrefslogtreecommitdiff
path: root/neutron/notifiers
diff options
context:
space:
mode:
authorRussell Bryant <rbryant@redhat.com>2016-02-02 12:29:53 -0500
committerRussell Bryant <rbryant@redhat.com>2016-02-02 12:29:53 -0500
commitac31371459ffe23448f1bc25706b4ada238b7818 (patch)
treea89cfe75c8145a13e1a63f83ea7abdd32cf0a77d /neutron/notifiers
parent9546ee7d92a35d5176a6ec15002745a0899e8935 (diff)
downloadneutron-ac31371459ffe23448f1bc25706b4ada238b7818.tar.gz
nova-notifier: Change warning to debug.
The NotFound response from Nova happens under normal circumstances, so it should be a debug message, not a warning. In particular, if nova itself deletes the port, when we then notify about it, it's going to say not found. Change-Id: I782a0fb9f39c2533bcf62b4e7ceb655f067c0282 Signed-off-by: Russell Bryant <rbryant@redhat.com>
Diffstat (limited to 'neutron/notifiers')
-rw-r--r--neutron/notifiers/nova.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/neutron/notifiers/nova.py b/neutron/notifiers/nova.py
index 9abe6bcc90..c444c19afc 100644
--- a/neutron/notifiers/nova.py
+++ b/neutron/notifiers/nova.py
@@ -208,8 +208,8 @@ class Notifier(object):
response = self.nclient.server_external_events.create(
batched_events)
except nova_exceptions.NotFound:
- LOG.warning(_LW("Nova returned NotFound for event: %s"),
- batched_events)
+ LOG.debug("Nova returned NotFound for event: %s",
+ batched_events)
except Exception:
LOG.exception(_LE("Failed to notify nova on events: %s"),
batched_events)