
Originally Posted by
yourule97
Stuff

Originally Posted by
sf411
DisableSRLDebug := true;
this that sf411 said will disable the debug and print only the stuff you have put "writeln("...")" .
Although, There is another way of managing the debug and it works like this:
you must put:
On the top of the script with all those other RED stuff.
Then you must do This with each thing you want on or off the debug: (Painted in RED)
Code:
procedure Warning(text:string);
begin
{$IFDEF debug_on}
writeln('=========================');
writeLn('Stuff that gets printed on the debug');
writeln('=========================');
{$ENDIF}
end;
This will probably come in handy to you also
That clears completly the debug. (comes in handy when printing ProgressReports)
Hope i have been able to help you, Undorak7