New process available on bug check

This is called after results are established.
$results and $status available for use and example shows logging them to
a file
This commit is contained in:
Matt Pass
2014-02-28 12:19:59 +00:00
parent b2117ece23
commit f5be67675b

View File

@@ -0,0 +1,8 @@
<?php
// Purpose: This file is run after a bug check, has $result string and $status arrays available to it
// Langs: PHP only
// Example:
// $fh = fopen(dirname(__FILE__)."/../bug-logs.log", 'a');
// fwrite($fh, "Bug check on: ".date("D dS M Y h:i:sa")."\nresult: ".$result.", status array:".var_export($status, true)."\n");
// fclose($fh);
?>