Sean's 4/18 notes

From Earlham CS Department
Revision as of 14:38, 18 April 2012 by Sawibel07 (talk | contribs) (Created page with "The errorMessage, jsonError, mesage, and jsonMessage functions print things to standard output and don't log it anywhere. ./util/errors.php, ./util/messages.php Changed errors....")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

The errorMessage, jsonError, mesage, and jsonMessage functions print things to standard output and don't log it anywhere. ./util/errors.php, ./util/messages.php


Changed errors.php to add a line to print things to the log using Log::getInstance()->log(stuff);

function errorMessage($msg) {

 Log::getInstance()->log("$msg");
 die($msg);

}

function jsonError($errorCode, $errorMessage){

 Log::getInstance()->log(json_encode(errorResponseCode($errorCode,$errorMessage)));
 echo json_encode(errorResponseCode($errorCode,$errorMessage));
 die();

}