|
From: Leif M. <le...@ta...> - 2004-09-24 05:57:33
|
Teikei, Currently, the Wrapper captures all output from the JVM process. This includes output from the JVM ouput via System.out or System.err. But it also includes low level output from the JVM itself like crash output, and thread dumps. The later can not be captured by java based logging tools. All of the above output from the JVM is logged by the Wrapper at a log level of INFO. It is not currently possible to filter System.out and System.err at different log levels. If you need to have finer control of the Java output, then I suggest using a logging tool inside the JVM. That is what I do and then still sent it to standard out. This lets me have fine control over Java logging, while still being able to have all log output in the wrapper.log file. Cheers, Leif v103 wrote: >I have one simple question. > >Do every standard outputs, standard error outputs from JVM get picked by JSW >and written down to wrapper.log(as default setting). Controlling >wrapper.logfile.loglevel property has any effect on controlling these >outputs? > >thanks > >Taikei Matsushita > > |