I'm running an application using spray-can and reactive mongo. I can't figure out how to turn of the debug logging for reactive mongo. My application.conf file (\src\main\resources\application.conf) looks like this:
akka {
loglevel = "INFO"
}
spray.can.server {
request-timeout = 1s
}
You can include a logger.xml logback configuration file in your application. An example configuration which turns all of the reactive-mongo loggers off is:
A similar discussion can be found in the reactive-mongo google group: https://groups.google.com/forum/?fromgroups#!searchin/reactivemongo/log/reactivemongo/pYJ05dUAg-s/qqcKbJ2uHOAJ
Hope this helps!