You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2021/08/18 13:57:17 UTC

[GitHub] [airflow] potiuk commented on pull request #6722: [AIRFLOW-4922]Fix task get log by Web UI

potiuk commented on pull request #6722:
URL: https://github.com/apache/airflow/pull/6722#issuecomment-901137418


   It's because you likely have custom logging configuration which does not derive from Airlfow's one as explained in https://airflow.apache.org/docs/apache-airflow/stable/configurations-ref.html#schedule-after-task-execution 
   
   Make sure you start with:
   
   ```
   LOGGING_CONFIG = deepcopy(DEFAULT_LOGGING_CONFIG)
   ```
   
   and only modify the config if you want to add custom configuration. 


-- 
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: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org