Our application uses akka actors (v. 1.1.2) that throw exception from time to time. We would like to have those exceptions logged and are using event-handlers = ["akka.event.slf4j.Slf4jEventHandler"]
to turn on the logging using slf4j/logback.
However, error log messages are still also written to stdout.
Is there any setting in akka how to disable EventHandler$DefaultListener
which seems to cause that behavior?
Thanks in advance!