Help for this page

Select Code to Download


  1. or download this
    open (ERRFILE, ">error.log");
    
    open (LOGFILE "/tmp/app.log");
    while (<LOGFILE>) {
        print ERRFILE $line if /xception/;
    }