すべての設定が完了し、/elmah.axd を参照できますが、これらすべてのエラーが発生しており、ログに記録されません。「エラーがログに記録されていません」と表示されるだけです...違う?
web.configに追加したものは次のとおりです。
<configSections>
<sectionGroup name="elmah">
<section name="security" requirePermission="false" type="Elmah.SecuritySectionHandler, Elmah" />
<section name="errorLog" requirePermission="false" type="Elmah.ErrorLogSectionHandler, Elmah" />
<section name="errorMail" requirePermission="false" type="Elmah.ErrorMailSectionHandler, Elmah" />
</sectionGroup>
</configSections>
<httpHandlers>
<add verb="POST,GET,HEAD" path="elmah.axd" type="Elmah.ErrorLogPageFactory, Elmah" />
</httpHandlers>
<httpModules>
<add name="ErrorLog" type="Elmah.ErrorLogModule, Elmah" />
</httpModules>
<elmah>
<errorLog type="Elmah.XmlFileErrorLog, Elmah" logPath="~/App_Data" />
<security allowRemoteAccess="yes" />
</elmah>
また:これはすでに私の RegisterRoutes() の開始時にありました
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
おそらく、ASP.NET MVC 1.0ではもう問題にならないことを読みました(ELMAH Webサイトによる...)