I have 2 test and 1 production server.
In my global.asax file - I have this one line of code:
void Application_Start(object sender, EventArgs e)
{
// Code that runs on application startup
Logging.ConfigureLogging();
}
On both test servers its working fine, but on the production server, its generating an object reference not set exception. Any ideas on what in the production environment could be causing this error?