Fix the logging to be compatible with functest
[sdnvpn.git] / sdnvpn / test / functest / testcase_9.py
index a4cfa5a..b77360d 100644 (file)
 #   - 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():