in reply to Errors from forked process
While not the best final solution, the first thing I would try would be to open a logging file and alias it to STDERR. Something like this:
open NEW_STDERR, ">/tmp/mylog.$$" or die "with some reasonable message +"; *STDERR = *NEW_STDERR;
|
|---|