How do I configure the logger in Play Framework 2.2 in order that I see log output in the console during play integration tests?
The configuration for Play Framework 2.1 does not work anymore.
BR Rene
How do I configure the logger in Play Framework 2.2 in order that I see log output in the console during play integration tests?
The configuration for Play Framework 2.1 does not work anymore.
BR Rene
Update To understand more about how logback is configured you should pass
-Dlogback.debug=true
property to the jvm/play. This might save you hours of debbugging.Add a file in
test/logback-test.xml
(needs to be on classpath so it might depend on how the play application is configured to find tests resources) with a content likeI have not done this yet, but you have to configure a logback configuration file. See the play documentation for additional information: http://www.playframework.com/documentation/2.2.x/SettingsLogger
Once you defined a specific logback configuration file, this needs to be placed in the test package, see this issue for details:https://github.com/playframework/playframework/issues/1669#issuecomment-24452132
See message from @benmccann: you can configure the logger in test mode by placing a logback-test.xml in test/resources (took me hours to figure out!).