On Fri, Apr 3, 2009 at 1:22 PM, E R <pc88m...@gmail.com> wrote: > I want to send all error output to a process for specialized logging. > I know that you can use CustomLog with a pipe. However, will that > capture output from things like 'print STDERR ...' or if an XS module > directly writes to stderr? I need that output to also go to my logging > process.
In addition to what Torsten said about the pipes, you should know that it STDERR is directed to the error_log (or pipe if you configure that), so it should catch the cases you're asking about. - Perrin