Skip to content

Commit c3fac9c

Browse files
committed
Improve logging
1 parent 26629fe commit c3fac9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

airbyte_cdk/sources/declarative/async_job/job_orchestrator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ def create_and_get_completed_partitions(self) -> Iterable[AsyncPartition]:
438438
self._wait_on_status_update()
439439
except Exception as exception:
440440
LOGGER.warning(
441-
f"Caught exception that stops the processing of the jobs: {exception}"
441+
f"Caught exception that stops the processing of the jobs: {exception}. Traceback: {traceback.format_exc()}"
442442
)
443443
if self._is_breaking_exception(exception):
444444
self._abort_all_running_jobs()

0 commit comments

Comments
 (0)