Improve logging, watchdog

This commit is contained in:
Tanner Collin 2021-10-16 01:41:22 +01:00
parent f2a9b94cf6
commit e9b0b08fee

View File

@ -34,6 +34,8 @@ def pulse_relay(pin):
def ring_bell(mac): def ring_bell(mac):
global allow_watchdog global allow_watchdog
if not allow_watchdog and not DEBUG:
logging.info('Enabling watchdog...')
allow_watchdog = True allow_watchdog = True
try: try:
@ -71,8 +73,7 @@ async def ws_listener():
unsub = unifiprotect.subscribe_websocket(subscriber) unsub = unifiprotect.subscribe_websocket(subscriber)
while True: while True:
if not DEBUG and allow_watchdog: if allow_watchdog and not DEBUG:
logging.debug('Feeding watchdog...')
feed_watchdog() feed_watchdog()
await asyncio.sleep(1) await asyncio.sleep(1)
@ -101,6 +102,9 @@ def init():
logging.info('Signals initialized') logging.info('Signals initialized')
if __name__ == '__main__': if __name__ == '__main__':
logging.info('')
logging.info('======================================')
logging.info('Boot up...')
init() init()
loop = asyncio.get_event_loop() loop = asyncio.get_event_loop()