In article <[EMAIL PROTECTED]>,
[EMAIL PROTECTED] (Peter Lemus) wrote:
> I would like to send all errors and messages to a
> file, but also to the screen when the script execute.
you need IO::Tee
http://search.cpan.org/search?dist=IO-Tee
--
brian d foy <[EMAIL PROTECTED]> - Perl services for
Hi folks,
I would like to send all errors and messages to a
file, but also to the screen when the script execute.
With this config, it seems to just send it to the file
but not the screen.sub DEBUG () { 2 }; # set level of
debugness.
open (STDERR, ">/tmp/computron.logout.log") or die
$!;
sele
ay, June 19, 2001 12:41 PM
Subject: STDERR Question
> Hi All
>
> Does PERL write compile errors and warnings to STDERR and if so is
> there any easy way to have them written to a file rather then to the
> console?
>
> Thanks
>
> Bill Conrad
>
>
Please note t
Hi All
Does PERL write compile errors and warnings to STDERR and if so is
there any easy way to have them written to a file rather then to the
console?
Thanks
Bill Conrad