changeset 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 d86ecc34516e
children 06f30ad8e110
files sat_frontends/quick_frontend/quick_app.py sat_frontends/quick_frontend/quick_chat.py
diffstat 2 files changed, 19 insertions(+), 15 deletions(-) [+]
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:
--- a/sat_frontends/quick_frontend/quick_chat.py	Sun Jun 30 15:40:52 2019 +0200
+++ b/sat_frontends/quick_frontend/quick_chat.py	Sun Jun 30 15:41:59 2019 +0200
@@ -486,8 +486,10 @@
         """Set the whole list of occupants"""
         assert len(self.occupants) == 0
         for nick, data in occupants.iteritems():
-            log.debug(u"adding occupant {nick} to {room}".format(
-                nick=nick, room=self.target))
+            # XXX: this log is disabled because it's really too verbose
+            #      but kept commented as it may be useful for debugging
+            # log.debug(u"adding occupant {nick} to {room}".format(
+            #     nick=nick, room=self.target))
             self.occupants[nick] = Occupant(self, data, self.profile)
 
     def updateOccupants(self, occupants):