Hello
Mine is a
j2EE, application working in a j2EE server.
For tracing execution I use logback/ sl4j instead of System.out.println() ... so that execution can be diagnosed by reading the log file
However, in my application I use a 3rd party jar, that internally uses System.out.println(), even exceptions were being printed using e.printStackTrace().
How can I redirect the stdout and stderr of this 3rd party jar, to the RollingFileAppender defined use in my SL4J.
I cannot update/ edit the 3rd party jar.
thanks
Jeevan