Open jfkrueger opened 3 months ago
From what I understand I would use
HttpApplication.RegisterModule(elmahErrorModule.GetType)
…
This is automatically done on your behalf here:
Ignition.Start
internally calls the following method that makes the calls to HttpApplication.RegisterModule
:
It registers all of the following modules:
Hope this clears up the connection.
The readme states: "If you do not want to use Global.asax,.." and then goes on to give an example of a static class and method but I've been looking all over the place to see how to use this if we wanted to use the PreStartInitialize as mentioned earlier in the readme. From what I understand I would use HttpApplication.RegisterModule(elmahErrorModule.GetType) but I'm not getting the connection between that and bootstrapper and how to actually configure the mail settings so that they are not stored in the web.config.
Thanks!