diff options
| -rw-r--r-- | nova/rpc/amqp.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nova/rpc/amqp.py b/nova/rpc/amqp.py index 95fe90412..cfa4ad1c1 100644 --- a/nova/rpc/amqp.py +++ b/nova/rpc/amqp.py @@ -373,7 +373,8 @@ def fanout_cast_to_server(context, server_params, topic, msg, def notify(context, topic, msg, connection_pool): """Sends a notification event on a topic.""" - LOG.debug(_('Sending notification on %s...'), topic) + event_type = msg.get('event_type') + LOG.debug(_('Sending %(event_type)s on %(topic)s'), locals()) pack_context(msg, context) with ConnectionContext(connection_pool) as conn: conn.notify_send(topic, msg) |
