Skip to content

Commit df5685a

Browse files
Merge pull request #87 from Intelligent-Testing-Lab/86-first-build
added log message
2 parents fa129f2 + 509f14e commit df5685a

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

aw_scenario_runner.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,10 @@ def run(self) -> None:
247247
self.results_manager.last_scenario, env_config
248248
)[self._scenario_config["route_id"]]
249249

250-
self.run_scenario(route_config, env_config)
250+
scenario_status = self.run_scenario(route_config, env_config)
251+
logger.info(
252+
f"Scenario iteration {self.curr_iteration} has concluded with the status of {'Success' if scenario_status else 'Failure'}"
253+
)
251254

252255
# run the metric manager with the recorded file to calculate the driving score
253256
driving_score = 0.0

0 commit comments

Comments
 (0)