Skip to content
This repository has been archived by the owner on Jun 12, 2018. It is now read-only.

Commit

Permalink
Change log level to INFO for 'Replacing routing entry ...'
Browse files Browse the repository at this point in the history
  • Loading branch information
justinvdm committed Jul 9, 2014
1 parent d90871a commit 2879665
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go/vumitools/routing_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ def add_entry(self, src_conn, src_endpoint, dst_conn, dst_endpoint):
self.validate_entry(src_conn, src_endpoint, dst_conn, dst_endpoint)
connector_dict = self._routing_table.setdefault(str(src_conn), {})
if src_endpoint in connector_dict:
log.warning(
log.info(
"Replacing routing entry for (%r, %r): was %r, now %r" % (
str(src_conn), src_endpoint, connector_dict[src_endpoint],
[str(dst_conn), dst_endpoint]))
Expand Down

0 comments on commit 2879665

Please sign in to comment.