diff --git a/.gitignore b/.gitignore index 6f8100d..dbb6970 100644 --- a/.gitignore +++ b/.gitignore @@ -39,4 +39,5 @@ src/tests/* tests/* doc/* SolutionVersion.cs -gems/lib/**/* \ No newline at end of file +gems/lib/**/* +/src/.vs/* \ No newline at end of file diff --git a/README.md b/README.md index ae9117e..5c26255 100644 --- a/README.md +++ b/README.md @@ -29,17 +29,17 @@ Easy. Install ELMAH by NuGet, in package console Install-Package Elmah.MVC -For further ELMAH configuration please check the [documentation](http://elmah.github.io/). +For further ELMAH configuration please check the [documentation](https://elmah.github.io/). Should I use HandleErrorAttribute? ---------------------------------- If you tried to use ELMAH in ASP.NET MVC, you are probably implemented your own HandleErrorAttribute, as it's shown in this [example](http://stackoverflow.com/questions/766610/how-to-get-elmah-to-work-with-asp-net-mvc-handleerror-attribute). You no longer need to apply this custom code with Elmah.MVC. As soon you installed package, so can safely remove your HandleError attribute, since it's already included into package. -Will exceptions being logged in "customError='On'" mode? +Will exceptions be logged in "customError='On'" mode? -------------------------------------------------------- -Yes, even in you configured application to use custom error pages, the exception will be logged. +Yes, even if you configured application to use custom error pages, the exception will be logged. How can I configure Elmah.MVC? ------------------------------