aboutsummaryrefslogtreecommitdiffstats
path: root/sfc/lib/cleanup.py
diff options
context:
space:
mode:
authorvijayendra Radhakrishna <vradhakrishna@mvista.com>2017-05-24 10:12:57 +0000
committerVijayendra Radhakrishna <vradhakrishna@mvista.com>2017-05-26 19:02:17 +0530
commita29f1fcf91f130f74dbd9d7c83bb7445faec6136 (patch)
tree73f779bcc1d03a833a6f3712d5a41f3cadf0262d /sfc/lib/cleanup.py
parentfdd96be78394a3ce05d9db5f4f68b60b02e48b1a (diff)
functest_logger changes fix
- Recently there is removal of functest logger utils. - This uses the default python logging mechanism Change-Id: I3aba38041bbed8b1e5a3de93bc9f639253f262d8 Signed-off-by: Vijayendra Radhakrishna <vradhakrishna@mvista.com>
Diffstat (limited to 'sfc/lib/cleanup.py')
-rw-r--r--sfc/lib/cleanup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sfc/lib/cleanup.py b/sfc/lib/cleanup.py
index 8c1f0d09..6259736a 100644
--- a/sfc/lib/cleanup.py
+++ b/sfc/lib/cleanup.py
@@ -1,12 +1,12 @@
import sys
-import functest.utils.functest_logger as ft_logger
+import logging
import functest.utils.openstack_utils as os_utils
import functest.utils.openstack_tacker as os_tacker
import sfc.lib.utils as utils
-logger = ft_logger.Logger(__name__).getLogger()
+logger = logging.getLogger(__name__)
def delete_odl_resources(odl_ip, odl_port, resource):