On Mon, 2008-08-25 at 12:46 -0700, Tsahi Asher wrote:
> hi,
> i added the following sub to Common.pm (the one in Program Files. the
> problem, I remind you, is that the daemon won't start):
> 
> sub debug_tsahi {
>     my ($varName, $varValue) = @_;
>     open OUTFILE, "> C:/Temp/debug_info.txt";

I mislead you here. This should be :

open OUTFILE, ">> C:/Temp/debug_info.txt";

instead of 

open OUTFILE, "> C:/Temp/debug_info.txt";

> as if the other calls where ignored somehow. Am I doing something
> wrong?

The result was that the ">" operator kept overwriting the file instead
of appending to it. I'm sorry :)

Attachment: signature.asc
Description: This is a digitally signed message part

_______________________________________________
scmbug-users mailing list
[email protected]
http://lists.mkgnu.net/cgi-bin/mailman/listinfo/scmbug-users

Reply via email to