diff sat_frontends/quick_frontend/quick_chat.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 ca55e02a6fc8
children b5f8cb26ef6f
line wrap: on
line diff
--- 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):