up vote 16 down vote favorite
3
share [g+] share [fb]

I want to see the stack trace in any function of my code, so i made somthing like this to call it and print the stack trace:

public function PrintStackTrace() {
    try {
        throw new Error('StackTrace');
    } catch (e:Error) {
        trace(e.getStackTrace());
    }
}

I like to know if there are other way to do this. In some place, the Error class creates the stack trace, but maybe it didn't do it with ActionScript 3.0 so maybe it's not posible, but i want to know.

Thanks!

link|improve this question

feedback

2 Answers

up vote 21 down vote accepted

As far as I know, the only way to make the stack trace available to your own code is via the getStackTrace() method in the Error class, just like you're already doing. In response to the example in your question, though, I would mention that you don't actually have to throw the Error -- you can just create it and call the method on it:

var tempError:Error = new Error();
var stackTrace:String = tempError.getStackTrace();

Also, like the documentation says, this only works in the debug version of Flash Player, so you can wrap this functionality in an if-block that checks the value of Capabilities.isDebugger if you want.

link|improve this answer
Ok, thanks, i didn't realize that :) But, what a pity that getStackTrace() is the only way to get it. – unkiwii Sep 29 '08 at 15:51
I want it to debug, not to the release, so there is no problem about that. And thanks again. – unkiwii Sep 29 '08 at 16:32
It's not the only way. See my answer below. – Joony Oct 18 '10 at 18:55
Thanks Joony, I clarified my answer to say "to make the trace available to your own code" instead of "to get the trace". – hasseg Oct 19 '10 at 10:42
feedback

Use the Flex DeBugger (FDB) that comes with the Flex SDK. It's a command-line debugger that allows you to debug .swf, even ones online (if it's a debug version). It allows you to set break-points, print/change variables, and dump the stack, and does not require you to add any extra code. A very useful tool that you shouldn't be without!

The fdb options you will need are 'break' and to specify the class and line where you want execution to halt, and 'bt' or 'info stack' to give you a backtrace of the stack. You can also display almost everything about the application while it runs.

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.