Added exception logging

This commit is contained in:
Maximilian Giller 2024-05-06 23:00:02 +02:00
parent 1779517c0f
commit 42b593f7f3

View file

@ -151,6 +151,6 @@ async def log_bed_weights():
add_weights_to_log(tl, tr, bl, br) add_weights_to_log(tl, tr, bl, br)
check_for_change() check_for_change()
except: except Exception as ex:
pass logging.exception(ex)
await asyncio.sleep(1) await asyncio.sleep(1)