aboutsummaryrefslogtreecommitdiffstats
path: root/sfc/lib/results.py
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/lib/results.py
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/lib/results.py')
-rw-r--r--sfc/lib/results.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfc/lib/results.py b/sfc/lib/results.py
index 5fa9aa05..c5172cb2 100644
--- a/sfc/lib/results.py
+++ b/sfc/lib/results.py
@@ -10,7 +10,7 @@
import functest.utils.functest_logger as ft_logger
-logger = ft_logger.Logger("sfc-results").getLogger()
+logger = ft_logger.Logger(__name__).getLogger()
class Results(object):