atul-astronomer opened a new issue, #62341: URL: https://github.com/apache/airflow/issues/62341
### Apache Airflow version main (development) ### If "Other Airflow 3 version" selected, which one? _No response_ ### What happened? Full logs are not being displayed on UI <img width="1378" height="863" alt="Image" src="https://github.com/user-attachments/assets/2565b2fa-15cb-46c1-b0db-892582beea12" /> ### What you think should happen instead? _No response_ ### How to reproduce Use the below Dag: ```python import datetime as dt from airflow import DAG from airflow.providers.standard.operators.python import PythonOperator def run(): for x in range(100): print(x) with DAG( dag_id="dag2", start_date=dt.datetime(2024, 7, 3), schedule=None, ) as dag: task_success = PythonOperator( task_id="task_success", python_callable=run, ) ``` ### Operating System Linux ### Versions of Apache Airflow Providers _No response_ ### Deployment Other ### Deployment details _No response_ ### Anything else? _No response_ ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [x] I agree to follow this project's [Code of Conduct](https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md) -- 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]
