elmah: exceptions without HttpContext?
问题 I spawn a thread on Application_Start and would like to log exceptions. There is no Context/HttpContext/HttpContext.Current , so how might I get it to log? At the moment, it does not catch any exception in my threads and if I write ErrorSignal.FromCurrentContext().Raise(ex); I get an error about context cannot be null. Maybe I can create a dummy HttpContext but somehow I don't think that will work well. -edit- I tried ErrorSignal.Get(new HttpApplication()).Raise(ex); and it doesn't seem to