I developed a financial data distribution server with Akka, and I want to set the logging level for the application. The documentation on akka.io is sketchy at best; they say that Akka no longer has βregistrationβ, and registration is now determined by event handlers. There is also an example event handler configuration, including the logging level:
akka { event-handlers = ["akka.event.EventHandler$DefaultListener"] event-handler-level = "INFO" }
I did this, but although akka.conf has successfully loaded, the registration is still at the "DEBUG" level. What is the problem?
scala logging akka
Alexander Temerev
source share