diff sat_frontends/quick_frontend/quick_app.py @ 2976:49458e12e414

quick frontends (app, chat): disabled the 2 most verbose logs, as they are barely useful and make reading logs difficult.
author Goffi <goffi@goffi.org>
date Sun, 30 Jun 2019 15:41:59 +0200
parents 5b0f897689b7
children ba9aaf7d6cd0
line wrap: on
line diff
--- a/sat_frontends/quick_frontend/quick_app.py	Sun Jun 30 15:40:52 2019 +0200
+++ b/sat_frontends/quick_frontend/quick_app.py	Sun Jun 30 15:41:59 2019 +0200
@@ -826,19 +826,21 @@
         raise NotImplementedError
 
     def presenceUpdateHandler(self, entity_s, show, priority, statuses, profile):
-        log.debug(
-            _(
-                u"presence update for %(entity)s (show=%(show)s, priority=%(priority)s, "
-                u"statuses=%(statuses)s) [profile:%(profile)s]"
-            )
-            % {
-                "entity": entity_s,
-                C.PRESENCE_SHOW: show,
-                C.PRESENCE_PRIORITY: priority,
-                C.PRESENCE_STATUSES: statuses,
-                "profile": profile,
-            }
-        )
+        # XXX: this log is commented because it's really too verbose even for DEBUG logs
+        #      but it is kept here as it may still be useful for troubleshooting
+        # log.debug(
+        #     _(
+        #         u"presence update for %(entity)s (show=%(show)s, priority=%(priority)s, "
+        #         u"statuses=%(statuses)s) [profile:%(profile)s]"
+        #     )
+        #     % {
+        #         "entity": entity_s,
+        #         C.PRESENCE_SHOW: show,
+        #         C.PRESENCE_PRIORITY: priority,
+        #         C.PRESENCE_STATUSES: statuses,
+        #         "profile": profile,
+        #     }
+        # )
         entity = jid.JID(entity_s)
 
         if entity == self.profiles[profile].whoami: