Skip to content

Commit

Permalink
Log queue system used when logging orchestrator
Browse files Browse the repository at this point in the history
  • Loading branch information
xjules committed May 28, 2024
1 parent a5273b5 commit 9f9307b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/ert/ensemble_evaluator/_builder/_legacy.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,9 @@ async def _evaluate_inner( # pylint: disable=too-many-branches
ee_cert=self._config.cert,
ee_token=self._config.token,
)
scheduler_logger.info("Experiment ran on ORCHESTRATOR: scheduler")
scheduler_logger.info(
f"Experiment ran on ORCHESTRATOR: scheduler on {self._queue_config.queue_system} queue"
)
else:
queue = JobQueue(
self._queue_config,
Expand All @@ -215,7 +217,9 @@ async def _evaluate_inner( # pylint: disable=too-many-branches
ee_token=self._config.token,
on_timeout=on_timeout,
)
scheduler_logger.info("Experiment ran on ORCHESTRATOR: job_queue")
scheduler_logger.info(
f"Experiment ran on ORCHESTRATOR: job_queue on {self._queue_config.queue_system}"
)
self._job_queue = queue

await cloudevent_unary_send(
Expand Down

0 comments on commit 9f9307b

Please sign in to comment.