My application has a rather non-trivial, yet standard, log configuration.
It includes a console appender and a rolling size-based file appender.
When I'm running the tests, thru the IDE or with maven, where is the least surprising place to save the log files?
Logs
folder in the output folder of your project, or is that too obvious? – CodeCaster Nov 19 '13 at 12:50target\logs
would be the right place. I wonder what happens in a multi-module project (will try) – Asaf Nov 19 '13 at 15:28