Page 1 of 1

Appending to existing log file

Posted: Mon Nov 01, 2010 6:43 pm
by atom
Hiya

Quick question
The Report.Setup method, it seems to over-write the specified file
Is there any way to tell it to append to existing log file?

Thanks

Re: Appending to existing log file

Posted: Mon Nov 01, 2010 8:16 pm
by Ciege
set AppendExisting to True.

Code: Select all

Report.Setup(ReportLevel defLevel, string LogFileName, bool LogToConsole, bool AppendExisting)

Re: Appending to existing log file

Posted: Tue Nov 02, 2010 10:44 am
by atom
thanks