Sean's 4/18 notes
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(); }