diff options
author | Jose Lausuch <jose.lausuch@ericsson.com> | 2017-05-05 07:50:31 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-05-05 07:50:31 +0000 |
commit | 533e08503e5888adb7a7cfa8b112502385130a8f (patch) | |
tree | 3fcba1f97f87f950adb206c904039d4e70ab178d /functest/core/feature.py | |
parent | 520ebc4959d1a62d3792311c16c4276f53721486 (diff) | |
parent | a87a5f00e1d32af5b193d0376778c966f1aaab3f (diff) |
Merge "Delete functest.utils.functest_logger"
Diffstat (limited to 'functest/core/feature.py')
-rw-r--r-- | functest/core/feature.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/functest/core/feature.py b/functest/core/feature.py index d65f5a3c..992de98a 100644 --- a/functest/core/feature.py +++ b/functest/core/feature.py @@ -13,11 +13,11 @@ Feature is considered as TestCase offered by Third-party. It offers helpers to run any python method or any bash command. """ +import logging import time import functest.core.testcase as base import functest.utils.functest_utils as ft_utils -import functest.utils.functest_logger as ft_logger from functest.utils.constants import CONST __author__ = ("Serena Feng <feng.xiaowei@zte.com.cn>, " @@ -27,11 +27,12 @@ __author__ = ("Serena Feng <feng.xiaowei@zte.com.cn>, " class Feature(base.TestCase): """Base model for single feature.""" + logger = logging.getLogger(__name__) + def __init__(self, **kwargs): super(Feature, self).__init__(**kwargs) self.result_file = "{}/{}.log".format( CONST.__getattribute__('dir_results'), self.project_name) - self.logger = ft_logger.Logger(self.project_name).getLogger() def execute(self, **kwargs): """Execute the Python method. |