diff --git a/t3/runners/rmg_runner.py b/t3/runners/rmg_runner.py index 4e71c4cc..1d1877c5 100644 --- a/t3/runners/rmg_runner.py +++ b/t3/runners/rmg_runner.py @@ -121,6 +121,9 @@ def check_running_jobs_ids(cluster_soft: str) -> List[str]: Returns: List(str): List of job IDs. """ + print(f'Checking running jobs IDs on the server...') + print(f'Cluster software: {cluster_soft}') + print(f'Check status command: {CHECK_STATUS_COMMAND}') stdout = execute_command(CHECK_STATUS_COMMAND)[0] running_job_ids = parse_running_jobs_ids(stdout, cluster_soft=cluster_soft.lower()) print(f'Running job IDs: {running_job_ids}')