ELMAH log how to ignore error by type ELMAH log how to ignore error by type asp.net asp.net

ELMAH log how to ignore error by type


Yes, you can do this using error filtering in ELMAH and which is described in detail on the project wiki. In short, the following filter in your web.config should do the job (assuming you have setup the modules configuration sections already):

<errorFilter>    <test>        <and>            <regex binding="FilterSourceType.Name" pattern="mail" />            <regex binding="Exception.Message"                pattern="(?ix: \b potentially \b.+?\b dangerous \b.+?\b value \b.+?\b detected \b.+?\b client \b )" />        </and>    </test></errorFilter>

The first <regex> condition filters based on the filtering source such that mailing will not occur. Check out the documentation on the wiki for full details.


A solution that doesn't involve regular expressions, simply add this to your Global.asax.cs:

protected void ErrorMail_Filtering(object sender, ExceptionFilterEventArgs e){    if (e.Message == "A potentially dangerous Request.Path value was detected from the client (:).")        e.Dismiss();}// this method may also be usefulprotected void ErrorLog_Filtering(object sender, ExceptionFilterEventArgs e){    if (e.Message == "A potentially dangerous Request.Path value was detected from the client (:).")    {        // do something    }}

Or you can combine the two methods:

void ErrorLog_Filtering(object sender, ExceptionFilterEventArgs args){    Filter(args);}void ErrorMail_Filtering(object sender, ExceptionFilterEventArgs args){    Filter(args);}void Filter(ExceptionFilterEventArgs args){    if (args.Exception.GetBaseException() is HttpRequestValidationException)        args.Dismiss();}