I\'m using this right now:
error_log(serialize(debug_backtrace()));
But I have to unserialize it every time. Is there a better way to store bac
A little ugly but workable, I do this:
error_log('Identifying string so that it doesn\'t just end up as gibberish' . json_encode(debug_backtrace()));