2 parents fa129f2 + 509f14e commit df5685aCopy full SHA for df5685a
1 file changed
aw_scenario_runner.py
@@ -247,7 +247,10 @@ def run(self) -> None:
247
self.results_manager.last_scenario, env_config
248
)[self._scenario_config["route_id"]]
249
250
- self.run_scenario(route_config, env_config)
+ 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
+ )
254
255
# run the metric manager with the recorded file to calculate the driving score
256
driving_score = 0.0
0 commit comments