debug message on events

This commit is contained in:
Adrian Sampson 2011-04-09 13:18:44 -07:00
parent 565257988a
commit 1896f397a2

View file

@ -202,6 +202,7 @@ def send(event, **arguments):
Returns the number of handlers called.
"""
log.debug('Sending event: %s' % event)
handlers = _event_handlers[event]
for handler in handlers:
handler(**arguments)