We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b691ed commit b73cc33Copy full SHA for b73cc33
openeo/rest/job.py
@@ -204,7 +204,8 @@ def soft_error(message: str):
204
poll_interval = min(1.25 * poll_interval, max_poll_interval)
205
206
if status != "finished":
207
- print("Logs for failed job:")
+ print("Your batch job failed. Logs can be found online in an openEO editor, or you can get them with 'connection.job('my_job_id_123').logs()'")
208
+ print("Printing logs:")
209
print(self.logs())
210
raise JobFailedException("Batch job {i} didn't finish properly. Status: {s} (after {t}).".format(
211
i=self.job_id, s=status, t=elapsed()
0 commit comments