I've added ELMAH to my ASP.NET MVC 4 .Net 4 web application.
The intergration was simple and it works well.
I've changed the "elmah.mvc.route" value in the app settings of my web.config to an "Admin/SiteLog" route - the elmah log is displayed at this route now
But, it is also still shown at "/elmah" for some reason (with no css styling, but same content).
How can I disable the default elmah route?
<appSettings>
<add key="elmah.mvc.route" value="error-logs" />
<add key="elmah.mvc.IgnoreDefaultRoute" value="true" />
</appSettings>