Files
ICEcoder/processes/on-bug-check.php
Matt Pass f5be67675b 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
2014-02-28 12:19:59 +00:00

8 lines
344 B
PHP

<?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);
?>