xinbinhuang commented on a change in pull request #17967:
URL: https://github.com/apache/airflow/pull/17967#discussion_r700755625
##########
File path: airflow/task/task_runner/standard_task_runner.py
##########
@@ -84,7 +84,8 @@ def _start_by_fork(self):
try:
args.func(args, dag=self.dag)
return_code = 0
- except Exception:
+ except Exception as task_launch_exception:
+ self.log.error(repr(task_launch_exception))
Review comment:
```suggestion
self.log.error(task_launch_exception)
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]