Skip to content

Commit

Permalink
Fix log message
Browse files Browse the repository at this point in the history
  • Loading branch information
abompard committed Apr 26, 2018
1 parent 7ee740c commit e21dfd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fedmsg_migration_tools/bridges.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def zmq_to_amqp(amqp_url, exchange, zmq_endpoints, topics):
producer.publish(body, routing_key=topic, retry=True, retry_policy=retry_policy)
except Exception as e:
_log.exception('Publishing "%r" to exchange "%r" on topic "%r" failed (%r)',
body, topic, exchange)
body, exchange, topic, e)


def amqp_to_zmq(amqp_url, queue_name, bindings, publish_endpoint):
Expand Down

0 comments on commit e21dfd0

Please sign in to comment.