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.

link|improve this question

feedback

3 Answers

There is an example of using set_error_handler() in conjunction with ErrorException to do just this:

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 set_error_handler():

http://us2.php.net/set_error_handler

link|improve this answer
Does this work for warnings? It's not an error. Just a warning. The script continues. – quano Jun 21 '11 at 14:28
Yes, updated my answer. – AJ. Jun 21 '11 at 14:30
feedback

Do you mean something like http://php.net/manual/en/function.debug-backtrace.php ?

link|improve this answer
Could be a part of it, but I would still know when to use it. It's maybe 0.1% of the times when the code is run that the warning is generated happens. I need to catch that specific stacktrace. – quano Jun 21 '11 at 14:31
Then see AJ's answer he has the other part of the solutution you need :). – hoppa Jun 21 '11 at 14:33
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.

XDebug Stack Traces

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.