Add error file and line to the xmppdaemon error handler

darcs-hash:20080722064607-533db-c902d49bc97b74064e5a7ca2b91c4577f5256fbd.gz
This commit is contained in:
Mike Cochrane 2008-07-22 02:46:07 -04:00
parent a4fa34cecb
commit ef946142b4

View File

@ -21,7 +21,7 @@
function xmppdaemon_error_handler($errno, $errstr, $errfile, $errline, $errcontext) {
switch ($errno) {
case E_USER_ERROR:
echo "ERROR: [$errno] $errstr\n";
echo "ERROR: [$errno] $errstr ($errfile:$errline)\n";
echo " Fatal error on line $errline in file $errfile";
echo ", PHP " . PHP_VERSION . " (" . PHP_OS . ")\n";
echo "Aborting...\n";
@ -29,15 +29,15 @@ function xmppdaemon_error_handler($errno, $errstr, $errfile, $errline, $errconte
break;
case E_USER_WARNING:
echo "WARNING [$errno] $errstr\n";
echo "WARNING [$errno] $errstr ($errfile:$errline)\n";
break;
case E_USER_NOTICE:
echo "My NOTICE [$errno] $errstr\n";
echo "My NOTICE [$errno] $errstr ($errfile:$errline)\n";
break;
default:
echo "Unknown error type: [$errno] $errstr\n";
echo "Unknown error type: [$errno] $errstr ($errfile:$errline)\n";
break;
}