in reply to Error output to screen
My personal preference when developing on windows nt/xp systems is to use the event log instead of a log file. I have had good luck with Win32::EventLog::Carp.eval { copy($fileOne,$fileTwo) or die "Failed to copy $fileOne to $fileTw +o - $!"; }; if ($@) { # Record the log information in here exit 1; }
|
|---|