From 60bc3dddb055cc1ec53196a474743790e6395dce Mon Sep 17 00:00:00 2001 From: Juan Vidal Date: Mon, 20 Feb 2017 07:52:57 +0000 Subject: Use __name__ on Logger instantiation instead of custom strings Change-Id: Ic68256410b29cf3ba39a10a92d243979ea475220 Signed-off-by: Juan Vidal --- sfc/tests/functest/run_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sfc/tests/functest/run_tests.py') diff --git a/sfc/tests/functest/run_tests.py b/sfc/tests/functest/run_tests.py index 7214dd94..3c97a711 100644 --- a/sfc/tests/functest/run_tests.py +++ b/sfc/tests/functest/run_tests.py @@ -29,7 +29,7 @@ parser.add_argument("-r", "--report", action="store_true") args = parser.parse_args() -logger = ft_logger.Logger("sfc-run-tests").getLogger() +logger = ft_logger.Logger(__name__).getLogger() COMMON_CONFIG = sfc_config.CommonConfig() -- cgit 1.2.3-korg