Tagged Questions
1
vote
3answers
202 views
How do I prepend information to STDERR when a method generates stderr?
Is there some way I can catch when a method generates a write to STDERR?
I'm trying to pre-pend some information with each STDERR write.
let's say our method is:
parser.thatGeneratesSTDERR();
...