Quiet the library a bit.
authorEric S. Raymond <esr@thyrsus.com>
Sun, 26 Aug 2012 13:53:31 +0000 (09:53 -0400)
committerEric S. Raymond <esr@thyrsus.com>
Sun, 26 Aug 2012 13:53:31 +0000 (09:53 -0400)
irclib.py

index 6964b6a46fc6132e11b0279408f4fbf865396d15..caa5066210ca0662ab1ceaf005da981148155f83 100644 (file)
--- a/irclib.py
+++ b/irclib.py
@@ -187,6 +187,7 @@ class IRC(object):
 
         See documentation for IRC.__init__.
         """
+        self.debug(2, "process_data()")
         for s in sockets:
             for c in self.connections:
                 if s == c._get_socket():
@@ -218,6 +219,7 @@ class IRC(object):
         incoming data, if there are any.  If that seems boring, look
         at the process_forever method.
         """
+        self.debug(2, "process_once()")
         sockets = map(lambda x: x._get_socket(), self.connections)
         sockets = filter(lambda x: x != None, sockets)
         if sockets:
@@ -236,6 +238,7 @@ class IRC(object):
 
             timeout -- Parameter to pass to process_once.
         """
+        self.debug(1, "process_forever(timeout=%s)" % (timeout))
         while 1:
             self.process_once(timeout)