Trying to implement the Logging Filter in Chapter 11 but when adding
Code:
[LoggingFilter]
public ActionResult Index()
{
ViewData["Message"] = "Welcome to ASP.NET MVC!";
return View();
}
I get the build error "LoggingFilter is not an attribute class". Why?