in reply to Printing "log" output while debugging

Depending on how you are using this in the script, you may want to add:

select FH;

This will make FH the default for all print statements, so you won't need to use print FH each time.

</ajdelore>

Replies are listed 'Best First'.
Re: Re: Printing "log" output while debugging
by sweetblood (Prior) on Aug 26, 2003 at 17:52 UTC
    Great pointer ... Never thought of that++