Hi Mike,

If I simplify my routine to essentially this:

try:
  raise RuntimeError("intentional")
except Exception, e:
  log.exception("hello")

And then run this code (from within the Wing IDE debugger), I get this
output on the console:

14:54:56,901 ERROR [mfg.controllers.filter.rules] hello
Traceback (most recent call last):
  File "/mypub/home/dfarrell/dev/plant-trunk/webapps/mfg/mfg/
controllers/filter/rules.py", line 51, in index
    raise RuntimeError("intentional")
RuntimeError: intentional
Traceback (most recent call last):
  File "/mypub/home/dfarrell/dev/plant-trunk/webapps/mfg/mfg/
controllers/filter/rules.py", line 51, in index
    raise RuntimeError("intentional")
RuntimeError: intentional

It looks there is an another exception being thrown within my
exception handler, but I don't get it. :)

Thanks for your reply,
Doug

-- 
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/pylons-discuss?hl=en.

Reply via email to