kacpermuda commented on issue #61914:
URL: https://github.com/apache/airflow/issues/61914#issuecomment-3933655612
@pradeep-ac9 What you describe looks like a separate issue, maybe there is
an issue for that already, feel free to open one otherwise.
I was able to reproduce what I described above on latest main now, using
breeze.
Just the simplest DAG, but with `AIRFLOW__LOGGING__LOGGING_LEVEL=DEBUG`.
```
import datetime as dt
from airflow import DAG
from airflow.providers.standard.operators.bash import BashOperator
with DAG(
dag_id="dag",
start_date=dt.datetime(2024, 7, 3),
schedule=None,
) as dag:
task_success = BashOperator(
task_id="task_success",
bash_command="exit 0;",
)
```
It always show only first 46 lines:
<img width="1892" height="895" alt="Image"
src="https://github.com/user-attachments/assets/5d301c45-9d05-4958-89e4-190a50065722"
/>
--
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]