Not an ID
Not an ID

Reputation: 2589

Logging in Erlang: Why there is no library to send an email when an error happens?

In some languages, you can attach an email handler to the logging system, so that when an (interested) error happens, you get an email.

But for Erlang, there is no such application/library/(plugin for lager), (at least I cannot find one), why is that? Erlang has some other way to notice the developer?

Of cause I can always roll my own, and some one on mail list has already done that, but given the fact that this is something everyone needs, why there is no such library already?

Upvotes: 2

Views: 80

Answers (1)

aronisstav
aronisstav

Reputation: 7974

As pointed out in this comment, such a library exists for lager:

https://github.com/blinkov/lager_smtp

Upvotes: 2

Related Questions