[akka-user] Suppress Slf4jLogger started message?

2014-06-18 Thread tigerfoot
Hello, I'm using Slf4j (logback) and always get the following output on startup: [test-akka.actor.default-dispatcher-4] INFO akka.event.slf4j.Slf4jLogger - Slf4jLogger started In my akka config I have these set: akka.loglevel = "ERROR" akka.stdout-loglevel = "ERROR" In my logback.xml file I h

Re: [akka-user] Suppress Slf4jLogger started message?

2014-06-20 Thread Akka Team
Hi Greg, You might be looking for this: http://doc.akka.io/docs/akka/2.3.3/scala/logging.html#Logging_to_stdout_during_startup_and_shutdown -Endre On Thu, Jun 19, 2014 at 2:06 AM, tigerfoot wrote: > Hello, > > I'm using Slf4j (logback) and always get the following output on startup: > > [test

Re: [akka-user] Suppress Slf4jLogger started message?

2014-06-23 Thread Patrik Nordwall
That log entry is emitted by akka.event.slf4j.Slf4jLogger using SLFLoggerFactory.getLogger("akka.event.slf4j.Slf4jLogger"). That means that it should be using logback, but your output format indicates something else. Are you sure that the logback.xml that you have listed is used when you run this?