Hello,
I have a Play 2.2.1 scala application. I have overridden the Global object onLoadConfig method to change the configuration file according the mode : application.conf in prod, application.dev.conf in dev and application.test.conf in test. This works well except for logging configuration in prod mode.
In dev mode, I set logs in DEBUG, and it works fine. I prod, I set logs in INFO, but it seems to be ignored. I configure the logs in a logger.conf file that I include in my main config file (application.conf). I use the same way in dev and it works.
Is there a configuration that takes the priority for logging in prod?
Thanks in advance for your help.