From: jose.lausuch Date: Wed, 1 Jun 2016 12:38:21 +0000 (+0200) Subject: Fix duplicated output when using the functest logger X-Git-Tag: colorado.1.0~356 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=5bf1647dec6860464eeb082b2875798f0759aa91;p=functest.git Fix duplicated output when using the functest logger JIRA: FUNCTEST-275 Change-Id: I49c66521652b31d5bb398ea4013ac061f320d725 Signed-off-by: jose.lausuch --- diff --git a/utils/functest_logger.py b/utils/functest_logger.py index 72c4b9140..b154f563d 100644 --- a/utils/functest_logger.py +++ b/utils/functest_logger.py @@ -31,6 +31,7 @@ class Logger: CI_DEBUG = os.getenv('CI_DEBUG') self.logger = logging.getLogger(logger_name) + self.logger.propagate = 0 self.logger.setLevel(logging.DEBUG) ch = logging.StreamHandler()