szaszm commented on code in PR #2129:
URL: https://github.com/apache/nifi-minifi-cpp/pull/2129#discussion_r2884348679


##########
behave_framework/src/minifi_test_framework/core/hooks.py:
##########
@@ -57,15 +56,13 @@ def common_before_scenario(context: Context, scenario: 
Scenario):
         if not hasattr(context, attr):
             setattr(context, attr, types.MethodType(method, context))
 
-    logging.info("Running scenario: %s", scenario)
     context.scenario_id = scenario.filename.rsplit("/", 1)[1].split(".")[0] + 
"-" + str(
         scenario.parent.scenarios.index(scenario))
     network_name = f"{context.scenario_id}-net"
     docker_client = docker.client.from_env()
 
     try:
         existing_network = docker_client.networks.get(network_name)
-        logging.warning(f"Found existing network '{network_name}'. Removing it 
first.")

Review Comment:
   Can we keep the warning and log it to the scenario info file before or after 
the normal info?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to