Skip to content

Commit 59b1e43

Browse files
committed
Fix log wording
1 parent d154af9 commit 59b1e43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphdatascience/model/kge_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ def _wait_for_job(self, job_id: str) -> None:
188188

189189
res_json = res.json()
190190
if res_json["job_status"] == "exited":
191-
logging.info("KGE job completed!")
191+
logging.info(f"Job with ID '{job_id}' completed")
192192
return
193193
elif res_json["job_status"] == "failed":
194194
error = f"KGE job failed with errors:{os.linesep}{os.linesep.join(res_json['errors'])}"

0 commit comments

Comments
 (0)