From 24106af0bc806b68c2f7b2901638127d9249b8d0 Mon Sep 17 00:00:00 2001 From: Periyasamy Palanisamy Date: Thu, 31 May 2018 16:59:54 +0200 Subject: Fix the logging to be compatible with functest Change-Id: I62b432497175e79bcf2cd241be54d8a7f5db2799 Signed-off-by: Periyasamy Palanisamy (cherry picked from commit e08e7c43c85fa04dc78a1fcf8a11ab877a78dfb9) --- sdnvpn/test/functest/testcase_9.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sdnvpn/test/functest/testcase_9.py') 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(): -- cgit 1.2.3-korg