Error Logging Filter and Route (ELFAR) Wiki
Error Logging Filter and Route (ELFAR) for ASP.NET MVC
Brought to you by:
stevenbey
As an alternative (or suppliment) to email notification, ELFAR can post errors to Twitter, which can be achieved by passing an IErrorLogTweet
object to the ErrorLogFilter
constructor. For example:
new ErrorLogFilter(provider, tweet: new ErrorLogTweet("username", "password"))
ELFAR has an out-of-the-box ErrorLogTweet
class but you can pass in your own email notification object by implementing the [IErrorLogTweet] interface.