I need to get a stack trace object in Ruby; not to print it, just to get it to do some recording and dumping for later analysis. Is that possible? How?
|
feedback
|
|
You can use Kernel.caller for this. The same method is used when generating stack traces for exceptions. From the docs:
| |||
|
feedback
|
|
Try error.backtrace:
produces:
| |||||||||||||||
feedback
|
|
This link explains exception handling mechanism in ruby. | |||
feedback
|
|
You can create your own if you want as well. As demonstrated in Eloquent Ruby by Russ Olsen:
| |||
|
feedback
|
|
Do not know, wether it is still of value, but I stumbled upon this post, that simply uses caller(0) (a kernel function). It helped me to make a quick and dirty log function, to show deep down in the call hierarchy, where the hell the function was called from, without the need to raise an exception | |||
|
feedback
|