Re: mod_wsgi // Stack trace does not show in log files or gets sent by email

2008-12-20 Thread Stefan Wallner
So I spent the last few days debugging and was able to solve half the problem, i.e. the mails-not-getting-sent one: Turns out that the mail server I was told to use does swallow messages containing a stack trace, presumably due to spam filtering. The nice thing was that a) the sys admin told me

mod_wsgi // Stack trace does not show in log files or gets sent by email

2008-12-13 Thread Stefan Wallner
Hi, I am running Django 1.0 on Windows Server 2003, Python 2.5 with mod_wsgi. I am having trouble capturing any exceptions in my code either through Apache's error log or by having an email sent to me. As a simple test I added a = [1,2,3] b = a[4] to the top of one of my views, which does