Hi, I’m using scribe as my logger but I getting the following every time I log to the console:
[INFO] [akka.event.slf4j.Slf4jLogger] - Slf4jLogger started
Is there a way of silence this message?
I do have log4j added to the build since Akka?/datastax needs it.
If you don’t want that log entry you can set akka.event.slf4j.Slf4jLogger
logging level to WARN in your logging config (it doesn’t do any other logging on its own behalf than that specific startup info log).
@johanandren thanks, somehow I missed the logback.xml file. Works as expected.