I am using a CPAN module (Parse::RecDescent, as it happens) which prints output to stderr. My program, on the other hand, uses a logging module (based on log4perl) and I want to direct all output through my own logging module. I do not want to change the code of P::RD and it is not convenient to inherit P::RD, in order to change its behaviour. (NB When I say "prints output to stderr", I mean literally "print STDERR". If it was using warn(), I could simply install a __WARN__ handler.)

The obvious solution would appear to be to attach an output filter to my own program's STDERR. However, I find to my chagrin that I do not know how to do so :-( Attaching an output filter to my own program's STDOUT is straightforward. For example:

attach_stdout_filter; while (<>) { print; } sub attach_stdout_filter { my($pid); return if $pid = open(STDOUT, '|-'); defined $pid or die "Cannot fork: $!\n"; # child while (<STDIN>) { s/foo/bar/; print; } }

Does anybody have a similar example which attaches an output filter to STDERR?

Cheers
Kevin

In reply to Filtering my own stderr by ruscoekm

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.