Help for this page

Select Code to Download


  1. or download this
    sub debugLogFunctionNameLineNum {
    #debugLogFunctionNameLineNum((caller(0))[2],(caller(1))[3], @_);
    ...
        print $LOGFH "$header $input_msg\n";
        $writelog->up();
    }
    
  2. or download this
    sub logLine {
        my ($text) = @_;
    ...
        $writelog->down();
        print $LOGFH "$header $text\n";
        $writelog->up();
    
  3. or download this
    sub EmailResults {
        debugLogFunctionNameLineNum((caller(0))[2],(caller(1))[3], @_);
    ...
            $smtp->quit;
        }
    }