summaryrefslogtreecommitdiffstats
path: root/sdnvpn/test/functest/testcase_9.py
diff options
context:
space:
mode:
authorPeriyasamy Palanisamy <periyasamy.palanisamy@ericsson.com>2018-05-31 16:59:54 +0200
committerPeriyasamy Palanisamy <periyasamy.palanisamy@ericsson.com>2018-06-04 05:21:56 +0000
commit24106af0bc806b68c2f7b2901638127d9249b8d0 (patch)
tree760484b17d69516107283717d3429b985859db67 /sdnvpn/test/functest/testcase_9.py
parent352c59535785950f9af57838ceaced3b040ca238 (diff)
Fix the logging to be compatible with functest
Change-Id: I62b432497175e79bcf2cd241be54d8a7f5db2799 Signed-off-by: Periyasamy Palanisamy <periyasamy.palanisamy@ericsson.com> (cherry picked from commit e08e7c43c85fa04dc78a1fcf8a11ab877a78dfb9)
Diffstat (limited to 'sdnvpn/test/functest/testcase_9.py')
-rw-r--r--sdnvpn/test/functest/testcase_9.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sdnvpn/test/functest/testcase_9.py b/sdnvpn/test/functest/testcase_9.py
index a4cfa5a..b77360d 100644
--- a/sdnvpn/test/functest/testcase_9.py
+++ b/sdnvpn/test/functest/testcase_9.py
@@ -13,18 +13,18 @@
# - Start a BGP router with OpenDaylight
# - Add the functest Quagga as a neighbor
# - Verify that the OpenDaylight and gateway Quagga peer
+import logging
import sys
from sdnvpn.lib import config as sdnvpn_config
from sdnvpn.lib import utils as test_utils
from sdnvpn.lib.results import Results
-from sdnvpn.lib import logutil
COMMON_CONFIG = sdnvpn_config.CommonConfig()
TESTCASE_CONFIG = sdnvpn_config.TestcaseConfig(
"sdnvpn.test.functest.testcase_9")
-logger = logutil.getLogger('__name__')
+logger = logging.getLogger('__name__')
def main():