changeset 3130:b9486a7f9b4f

quick frontend (app): log own jid when received
author Goffi <goffi@goffi.org>
date Mon, 27 Jan 2020 19:53:31 +0100
parents 95befc85e816
children d6da17f6e4ce
files sat_frontends/quick_frontend/quick_app.py
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/sat_frontends/quick_frontend/quick_app.py	Mon Jan 27 19:53:31 2020 +0100
+++ b/sat_frontends/quick_frontend/quick_app.py	Mon Jan 27 19:53:31 2020 +0100
@@ -78,6 +78,7 @@
 
     def _plug_profile_jid(self, jid_s):
         self.whoami = jid.JID(jid_s)  # resource might change after the connection
+        log.info(f"Our current jid is: {self.whoami}")
         self.bridge.isConnected(self.profile, callback=self._plug_profile_isconnected)
 
     def _autodisconnectEb(self, failure_):