Beispiel #1
0
 def _dispatcher(self, c, e):
     et = e.type
     if et not in self._events_not_logged():
         s = e.source
         t = e.target
         log.debug(u'{}, {}, {} -- {}'.format(et, s, t, e.arguments))
     SingleServerIRCBot._dispatcher(self, c, e)
Beispiel #2
0
 def _dispatcher(self, c, e):
     eventtype = e.type
     source = e.source
     if source is not None:
         source = str(source)
     else:
         source = ''
     SingleServerIRCBot._dispatcher(self, c, e)