From 61920529f9f63ce483b5dc2912d026286ffed1c1 Mon Sep 17 00:00:00 2001 From: Chris Cheetham Date: Mon, 27 Apr 2020 08:58:36 -0400 Subject: [PATCH] Skip print of user options (could have passwords) --- environment.py | 1 - 1 file changed, 1 deletion(-) diff --git a/environment.py b/environment.py index c174b890..76d63931 100644 --- a/environment.py +++ b/environment.py @@ -152,7 +152,6 @@ def setup_options(context): section = context.config.userdata.get("config_section", "behave.userdata") if parser.has_section(section): options = parser.items(section) - context.log.info("user options {}".format(options)) context.config.userdata.update(options) else: context.log.info("user options file found but does not contain section [{}]".format(section))