Log errors
All checks were successful
docker-image / docker (push) Successful in 9m49s

This commit is contained in:
Stefan Bethke 2025-06-07 18:00:00 +02:00
commit a3482cf2e8

View file

@ -35,7 +35,8 @@ class DBFAnimation(BubaAnimation):
def update(self): def update(self):
try: try:
self.fetch() self.fetch()
except Exception: except Exception as e:
self.log.warning(f"Unable to fetch {self.station}: {e}")
pass pass
sleep(60) sleep(60)