aboutsummaryrefslogtreecommitdiffstats
path: root/sfc/tests/functest/setup_scripts
diff options
context:
space:
mode:
authorJuan Vidal <juan.vidal.allende@ericsson.com>2017-02-20 07:52:57 +0000
committerJuan Vidal <juan.vidal.allende@ericsson.com>2017-02-20 08:06:46 +0000
commit60bc3dddb055cc1ec53196a474743790e6395dce (patch)
tree79563e4829f61de7cadc5908568b33026052546a /sfc/tests/functest/setup_scripts
parent72b6571f2b448e27a1d8c50dd8f27e564004d687 (diff)
Use __name__ on Logger instantiation instead of custom strings
Change-Id: Ic68256410b29cf3ba39a10a92d243979ea475220 Signed-off-by: Juan Vidal <juan.vidal.allende@ericsson.com>
Diffstat (limited to 'sfc/tests/functest/setup_scripts')
-rw-r--r--sfc/tests/functest/setup_scripts/prepare_odl_sfc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfc/tests/functest/setup_scripts/prepare_odl_sfc.py b/sfc/tests/functest/setup_scripts/prepare_odl_sfc.py
index 05990a08..1ddf36a6 100644
--- a/sfc/tests/functest/setup_scripts/prepare_odl_sfc.py
+++ b/sfc/tests/functest/setup_scripts/prepare_odl_sfc.py
@@ -18,7 +18,7 @@ import sys
import functest.utils.functest_logger as ft_logger
-logger = ft_logger.Logger("ODL_SFC").getLogger()
+logger = ft_logger.Logger(__name__).getLogger()
SFC_REPO_DIR = "/home/opnfv/repos/sfc"