X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Ftest_vxlan.py;h=ac435852b46258b725c83ed0dbbf9f09b0761e99;hb=7bb873a4cc068a6cc3c9d0e1d32987c5f8003904;hp=cb7e7acf364e264eb0bd1284ba4ec6c981be29e4;hpb=86fb04db3ec3979f20111bf4dfa945a1fa2275d4;p=vpp.git diff --git a/test/test_vxlan.py b/test/test_vxlan.py index cb7e7acf364..ac435852b46 100644 --- a/test/test_vxlan.py +++ b/test/test_vxlan.py @@ -1,7 +1,6 @@ #!/usr/bin/env python import unittest -from logging import * from framework import VppTestCase, VppTestRunner from template_bd import BridgeDomain @@ -94,7 +93,7 @@ class TestVxlan(BridgeDomain, VppTestCase): def tearDown(self): super(TestVxlan, self).tearDown() if not self.vpp_dead: - info(self.vapi.cli("show bridge-domain 1 detail")) + self.logger.info(self.vapi.cli("show bridge-domain 1 detail")) if __name__ == '__main__': unittest.main(testRunner=VppTestRunner)