Switch to side-by-side view
--- a/Allura/allura/tasks/event_tasks.py +++ b/Allura/allura/tasks/event_tasks.py @@ -1,5 +1,4 @@ import sys -import logging from allura.lib.decorators import task, event_handler from allura.lib.exceptions import CompoundError @@ -11,10 +10,6 @@ try: t(event_type, *args, **kwargs) except: - log = logging.getLogger(__name__) - log.exception( - 'Event %s(%s, *%r,**%r)', - t, event_type, args, kwargs) exceptions.append(sys.exc_info()) if exceptions: raise CompoundError(*exceptions)