Reformat and remove stale debugging

This commit is contained in:
2026-02-16 19:50:17 +00:00
parent 658ab10647
commit f3ced1bfd8
10 changed files with 122 additions and 105 deletions

View File

@@ -71,7 +71,7 @@ class UnifiedRouter(object):
self._typing_stop_tasks[key] = self.loop.create_task(_timer())
def _start(self):
print("UR _start")
self.log.info("Starting unified router clients")
self.xmpp.start()
self.signal.start()
self.whatsapp.start()
@@ -81,7 +81,7 @@ class UnifiedRouter(object):
try:
# self.xmpp.client.client.process()
# self.xmpp.start()
print("IN RUN BEFORE START")
self.log.debug("Router run loop initializing")
self._start()
self.loop.run_forever()
except (KeyboardInterrupt, SystemExit):