Is it possible to log stacktraces for php warnings? Or catch a warning and error_log() it?
There's some code causing warnings in my error log, but it's impossible to know what's causing these warnings without knowing the stack trace.
|
Is it possible to log stacktraces for php warnings? Or catch a warning and error_log() it? There's some code causing warnings in my error log, but it's impossible to know what's causing these warnings without knowing the stack trace.
| |||
|
feedback
|
|
There is an example of using http://us3.php.net/manual/en/class.errorexception.php You would just need to implement your custom logging functionality inside of the handler function. UPDATE: Note, this also works for warnings, and many other error types. For full compatibility, see the manual for | |||||
feedback
|
|
Do you mean something like http://php.net/manual/en/function.debug-backtrace.php ? | |||||
feedback
|
|
I believe xdebug would go to log if that's how you have it enabled in your php.ini file, but it has stack tracing (with some bonus features like showing the local variables). It is not recommend for a production environment though. | |||
|
feedback
|