Add error file and line to the xmppdaemon error handler
darcs-hash:20080722064607-533db-c902d49bc97b74064e5a7ca2b91c4577f5256fbd.gz
This commit is contained in:
parent
a4fa34cecb
commit
ef946142b4
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user