It looks like Akka logging adaptor doesn't support slf4j's trace level, is this the case? And if so, why is that?
I'm a little surprised that the akka logger isn't an actually implementation of slf4j interfaces...
--
>>>>>>>>>> Read the docs: http://akka.io/docs/
>>>>>>>>>> Check the FAQ: http://akka.io/faq/
>>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user
---
You received this message because you are subscribed to the Google Groups "Akka User List" group.
To post to this group, send email to akka...@googlegroups.com.
To unsubscribe from this group, send email to akka-user+...@googlegroups.com.
Visit this group at http://groups.google.com/group/akka-user?hl=en.
Patrik Nordwall
Typesafe - The software stack for applications that scale
Twitter: @patriknw
I don't usually use it. But today I had a desire. I have debug output to print details of a very busy trafficked web server. But, I would like to dump the raw request - no matter how large - to trace level.Of course, it's not a need.My workaround was to also setup an slf4j logger and trace dump to that synchronously.Slf4j is pretty accepted now, I'm surprised akka's logging doesn't use it.
--
>>>>>>>>>> Read the docs: http://akka.io/docs/
>>>>>>>>>> Check the FAQ: http://doc.akka.io/docs/akka/current/additional/faq.html
>>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user
---
You received this message because you are subscribed to the Google Groups "Akka User List" group.
To unsubscribe from this group and stop receiving emails from it, send an email to akka-user+...@googlegroups.com.
To post to this group, send email to akka...@googlegroups.com.
Visit this group at http://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.
On 09 Oct 2015, at 16:18, Heiko Seeberger <ma...@heikoseeberger.de> wrote:If you want to bypass Akka Logging, you maybe want to consider using Log4j with async logging, because its Disruptor based impl seems pretty neat. Maybe in Akka 3 they should get rid of Akka Logging altogether and use async Log4j logging directly?Heiko