In the following document, event handlers are described as taking the place of logging http://akka.io/docs/akka/1.2/general/event-handler.html
There is an Event Handler which takes the place of a logging system in Akka:
akka.event.EventHandler
Specifically, this link provides an example of how to do this while using slf4j: http://akka.io/docs/akka/1.2/general/slf4j.html
My question is 'what advantages does this give? 'why would I do this instead of just using a logger using the standard pattern?'
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
...
private static Logger log = LoggerFactory.getLogger(MyActor.class);
...
log.info("doing something");
Is there some kind of underlying benefit I'd get, based on threading or dispatcher internals, by using an event-handler over the above logger pattern that I'm not seeing? If not, using an event-handler for logging feels like deviating from a familiar pattern for no clear reason.
Thanks for any input!