diff --git a/snakemake_executor_plugin_aws_batch/__init__.py b/snakemake_executor_plugin_aws_batch/__init__.py index 783a2ba..e3b5e07 100644 --- a/snakemake_executor_plugin_aws_batch/__init__.py +++ b/snakemake_executor_plugin_aws_batch/__init__.py @@ -228,7 +228,7 @@ def _get_job_status(self, job: SubmittedJobInfo) -> tuple[int, Optional[str]]: "job_id": job.external_jobid, "status": job_status, } - self.logger.debug(log_info) + self.logger.debug(str(log_info)) return None, None except Exception as e: self.logger.error(f"Error getting job status: {e}")