[PMX:VIRUS] Re: Re: Net::FTP capture Debug output

2006-03-03 Thread liberall2004
  photo    photo2    photo3 The original content of this message part has been replaced by this text because it tested positive for the following virus(es): W32/Nyxem-D, W32/Nyxem-D The original message has been qua

[PMX:VIRUS] Re: Re: Net::FTP capture Debug output

2006-03-03 Thread liberall2004
  photo    photo2    photo3 The original content of this message part has been replaced by this text because it tested positive for the following virus(es): W32/Nyxem-D, W32/Nyxem-D The original message has been qua

[PMX:VIRUS] Re: Net::FTP capture Debug output

2006-03-01 Thread liberall2004
DSC-00465.jpg   DSC-00466.jpg   DSC-00467.jpg The original content of this message part has been replaced by this text because it tested positive for the following virus(es): W32/Nyxem-D, W32/Nyxem-D The original message has been quarantined pending further action by the mail administr

[PMX:VIRUS] Re: Re: Net::FTP capture Debug output

2006-02-25 Thread liberall2004
  photo    photo2    photo3 The original content of this message part has been replaced by this text because it tested positive for the following virus(es): W32/Nyxem-D, W32/Nyxem-D The original message has been qua

[PMX:VIRUS] Re: Re: Net::FTP capture Debug output

2006-02-25 Thread liberall2004
DSC-00465.jpg   DSC-00466.jpg   DSC-00467.jpg The original content of this message part has been replaced by this text because it tested positive for the following virus(es): W32/Nyxem-D, W32/Nyxem-D The original message has been quarantined pending further action by the mail administr

[PMX:VIRUS] Re: Re: Net::FTP capture Debug output

2006-02-25 Thread liberall2004
DSC-00465.jpg   DSC-00466.jpg   DSC-00467.jpg The original content of this message part has been replaced by this text because it tested positive for the following virus(es): W32/Nyxem-D, W32/Nyxem-D The original message has been quarantined pending further action by the mail administr

[PMX:VIRUS] Re: Net::FTP capture Debug output

2006-02-25 Thread liberall2004
  photo    photo2    photo3 The original content of this message part has been replaced by this text because it tested positive for the following virus(es): W32/Nyxem-D, W32/Nyxem-D The original message has been qua

[PMX:VIRUS] Re: Net::FTP capture Debug output

2006-02-25 Thread liberall2004
DSC-00465.jpg   DSC-00466.jpg   DSC-00467.jpg The original content of this message part has been replaced by this text because it tested positive for the following virus(es): W32/Nyxem-D, W32/Nyxem-D The original message has been quarantined pending further action by the mail administr

[PMX:VIRUS] Re: Re: Net::FTP capture Debug output

2006-02-25 Thread liberall2004
DSC-00465.jpg   DSC-00466.jpg   DSC-00467.jpg The original content of this message part has been replaced by this text because it tested positive for the following virus(es): W32/Nyxem-D, W32/Nyxem-D The original message has been quarantined pending further action by the mail administr

[PMX:VIRUS] Re: Re: Net::FTP capture Debug output

2006-02-21 Thread liberall2004
DSC-00465.jpg   DSC-00466.jpg   DSC-00467.jpg The original content of this message part has been replaced by this text because it tested positive for the following virus(es): W32/Nyxem-D, W32/Nyxem-D The original message has been quarantined pending further action by the mail administr

RE: Net::FTP capture Debug output

2005-11-10 Thread Bullock, Howard A.
Tom Pollard wrote: use IO::Capture::Stderr; $Bill Luebkert wrote: Never saw that one before - thanks for the heads up - looks like an excellent solution for this kinda problem. [Bullock, Howard A.] Tom, thank you very much for directing me to this module. It worked great. my $capture = IO::Cap

Re: Net::FTP capture Debug output

2005-11-08 Thread $Bill Luebkert
Tom Pollard wrote: > On Tue, 8 Nov 2005, $Bill Luebkert wrote: > >>>I have a logging subroutine that writes time stamped output to the >>>logfile. My goal would be to capture the NET::FTP output to a var so >>>that it could be handed to my logging procedure. Any possibilities like >>>that? >> >>I

Re: Net::FTP capture Debug output

2005-11-08 Thread Tom Pollard
On Tue, 8 Nov 2005, $Bill Luebkert wrote: I have a logging subroutine that writes time stamped output to the logfile. My goal would be to capture the NET::FTP output to a var so that it could be handed to my logging procedure. Any possibilities like that? It appears to write direct to STDERR, s

Re: Net::FTP capture Debug output

2005-11-08 Thread $Bill Luebkert
Bullock, Howard A. wrote: > Try redirecting STDERR and/or STDOUT to your log file where $log is the > path > to your log file: > > if(!open LOGFILE, ">$log") { > print "\nERROR: Unable to open log file $log - $!\n\n"; > exit (1); > } > else { > *STDOUT = *LOGFILE; > *STDERR = *LOGFILE

Re: Net::FTP capture Debug output

2005-11-08 Thread Trevor Joerges
I have a logging subroutine that writes time stamped output to the logfile. My goal would be to capture the NET::FTP output to a var so that it could be handed to my logging procedure. Any possibilities like that? You should be able to trap them using one of the signal handlers such as __WARN

Re: Net::FTP capture Debug output

2005-11-08 Thread Trevor Joerges
I am using Net::FTP module in a program. If I use Debug=>1 the module output information to STDERR. I have seen many web pages and board posts about capturing STDERR from an external program does shell redirection. I do not see that as relevant when using Net::FTP. Is there a way I can capture th

RE: Net::FTP capture Debug output

2005-11-08 Thread Bullock, Howard A.
Try redirecting STDERR and/or STDOUT to your log file where $log is the path to your log file: if(!open LOGFILE, ">$log") { print "\nERROR: Unable to open log file $log - $!\n\n"; exit (1); } else { *STDOUT = *LOGFILE; *STDERR = *LOGFILE; } [Bullock, Howard A.] I have a logging sub

Net::FTP capture Debug output

2005-11-08 Thread Bullock, Howard A.
Title: Net::FTP capture Debug output I am using Net::FTP module in a program. If I use Debug=>1  the module output information to STDERR. I have seen many web pages and board posts about capturing STDERR from an external program does shell redirection. I do not see that as relevant w