mbielejeski commented on issue #58553:
URL: https://github.com/apache/airflow/issues/58553#issuecomment-3629327116
I am running into a similar issue but it happens without any exceptions in
the log file.
I can reliably reproduce this issue with Airflow 3.1.3 on an Ubuntu 24.04
system using Firefox 133.0.3.
Here is an example dag that reproduces the problem in my setup. It has one
task that logs 100 messages and exits.
```
import logging
from airflow.sdk import dag, task, timezone
log = logging.getLogger("test_dag")
@dag(
schedule="5 3 * * *",
start_date=timezone.datetime(2025, 12, 1),
catchup=False,
tags=[]
)
def test_dag():
@task()
def collect():
for i in range(0, 100):
log.info(f"[Iteration {i}]: Doing some work")
return None
collect()
test_dag()
```
<br/>
When the vertical scrollbar is at the top of the log area, the first
iteration it shows is 33 instead of 0.
<img width="1570" height="1045" alt="Image"
src="https://github.com/user-attachments/assets/ffec99f1-b0c0-4be1-98eb-a1be96367b27"
/>
<br/>
When the vertical scrollbar is at the bottom of the log area, the last
message is shows is 76 instead of 99
<img width="1578" height="1051" alt="Image"
src="https://github.com/user-attachments/assets/480a4d14-6d80-45f4-834e-a95bc8997a52"
/>
Not sure if this helps at all, but I can see the whole log if I use the
Firefox Inspector tool to override the `position: relative` style with
`position: initial` on `div.chakra-stack`
--
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]