atul-astronomer opened a new issue, #46435:
URL: https://github.com/apache/airflow/issues/46435

   ### Apache Airflow version
   
   3.0.0a1
   
   ### If "Other Airflow 2 version" selected, which one?
   
   _No response_
   
   ### What happened?
   
   Task logs are much more readable in Airflow 2 as compared to Airflow 3
   
   ### What you think should happen instead?
   
   _No response_
   
   ### How to reproduce
   
   Run the below DAG and compare the logs in Airflow 2 and Airflow 3
   
   ```python
   from airflow import DAG
   from airflow.providers.standard.operators.bash import BashOperator
   
   dag = DAG(
       'hello_world_dag',
       schedule=None,
       catchup=False,
   )
   
   hello_task = BashOperator(
       task_id='say_hello',
       bash_command='echo "Hello World from Airflow!"',
       do_xcom_push = True,
       dag=dag,
   )
   
   hello_task
   
   ``` 
   
   **Screenshots**:
   
   Airflow 2.10
   
   <img width="1223" alt="Image" 
src="https://github.com/user-attachments/assets/14922eb2-437a-4842-afd5-232e1e53ad3b";
 />
   
   Airflow 3 (Tag 3.0.0a1)
   
   <img width="1703" alt="Image" 
src="https://github.com/user-attachments/assets/34d5d44d-03aa-4b4e-8eb6-0418a6d1e253";
 />
   
   ### 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]

Reply via email to