diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2016-09-01 13:52:28 +0200 |
---|---|---|
committer | Morgan Richomme <morgan.richomme@orange.com> | 2016-09-05 12:30:20 +0000 |
commit | bf64057ec2cc2dac2be15d0eb06b1c41ff27f293 (patch) | |
tree | 8764eba31eca2c04c69fc0db41338041a09473bb /utils | |
parent | 98a8439b6d7f8c176c668971ea0096c9cd1df118 (diff) |
Switch print to logging.info
It follows the recommendations described in the next review [1].
[1] https://gerrit.opnfv.org/gerrit/#/c/19795/
Change-Id: Ie7ce28451122c554f135caad068844c0303deaeb
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
(cherry picked from commit 0ae5f5fc64868e8c68eb330fa5aa219abdbdfee0)
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/openstack_clean.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/openstack_clean.py b/utils/openstack_clean.py index 3b937c917..ef26be1f3 100755 --- a/utils/openstack_clean.py +++ b/utils/openstack_clean.py @@ -233,7 +233,7 @@ def remove_ports(neutron_client, ports, network_ids): except: logger.debug(" > WARNING: Port %s does not contain fixed_ips" % port_id) - print port + logger.info(port) router_id = port['device_id'] if len(port['fixed_ips']) == 0 and router_id == '': logger.debug("Removing port %s ..." % port_id) |