Nov 14, 2002 #1 kisan Programmer Nov 14, 2002 7 GB Hi, I would like to write out in a file the message, what ftp print out, if we set it's Debug parameter level to 1. $ftp = Net::FTP->new("1.2.3.4", Debug => 1); Could anyone help, how to write this message in a file? thx kisan
Hi, I would like to write out in a file the message, what ftp print out, if we set it's Debug parameter level to 1. $ftp = Net::FTP->new("1.2.3.4", Debug => 1); Could anyone help, how to write this message in a file? thx kisan
Nov 14, 2002 #2 MikeLacey MIS Nov 9, 1998 13,212 GB the debug option prints to STDERR, so close STDERR and open it again pointing to the file Mike "Experience is the comb that Nature gives us, after we are bald." Is that a haiku? I never could get the hang of writing those things. Upvote 0 Downvote
the debug option prints to STDERR, so close STDERR and open it again pointing to the file Mike "Experience is the comb that Nature gives us, after we are bald." Is that a haiku? I never could get the hang of writing those things.
Nov 14, 2002 Thread starter #3 kisan Programmer Nov 14, 2002 7 GB Ok, it works! thanx, kisan Upvote 0 Downvote