Help for this page

Select Code to Download


  1. or download this
    MAKE_CLASSES:
    printf $temporaryLog "%s : Enter loop %d keys ...", scalar localtime()
    +, scalar keys %c;
    ...
         ...
        }
    printf $temporaryLog "exited\n";
    
  2. or download this
    perl -d:Trace yourscript.pl 2>yourlog
    
  3. or download this
    BEGIN{ close STDERR; open STDERR, '>', "$$.log" }
    END{ close STDERR; unlink "$$.log"; }