I run my tests using maven surefire plugin. When I need to debug the code, I usemvn -Dmaven.surefire.debug test to redirect to eclipse debugger.
This works well, but the log statements are not redirected to eclipse console.
Is there anyway we can redirect log and System.out statements to eclipse console view.
I tried setting useFile=false and maven.test.redirectTestOutputToFile=false properties. These options don't seem work.




System.out.println(...)andLogger.info(...)are printed to my Eclipse's Console view. - Gerold Broser