Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
js_api_error_handler.inc
1 <?php
28 function js_api_error_handler($err_no, $err_msg, $err_file, $err_line)
29 {
30  if ($err_no & (E_USER_ERROR | E_ERROR | E_USER_WARNING)) {
31  log_dump('ERROR: '.$err_msg .'. Error Number:'.$err_no);
32  }//end if
33 
34 }//end js_api_error_handler()
35 
36 
37 ?>