in reply to Re^2: Debugging My Perl
in thread Debugging My Perl
Sorry i missed
That you have to close the file, under Linux i could read the file anyway but i have hade troble with this under Windows, that a open file don't give you right to read.
add Close as below example
select STDOUT;
close(DEBUG); # Close the debugfile
print "And now we back\n";
// Anders