On 04/17/2018 11:06 PM, James Richters wrote:
I have a whole section of diagnostic writeln's in a program, and it's tedious 
to comment them all out/in as needed.   I'm curious if doing something like


what's wrong with traditional IFDEF?? use something like this...

{$IFDEF DEBUG}
writeln ('blahblahblah');
writeln (LOGFILE,'blahblahblah');
flush (LOGFILE);
{$ENDIF}


then you simply create the DEBUG define...

-DDEBUG

if you don't want it, leave it out and none of the bracketd code is even 
included...


--
 NOTE: No off-list assistance is given without prior approval.
       *Please keep mailing list traffic on the list unless*
       *a signed and pre-paid contract is in effect with us.*
_______________________________________________
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

Reply via email to