I wondered if there is a simple way I have have a snippet which traces the name of a method when called. I found className which is half-way there, but not something for the method... a 1-line trace(...) is what I'm after so I avoid typing the method name and leaving myself open to mistakes. This is for testing the order things happen, when I don't want to step through in the debugger.

link|improve this question

69% accept rate
feedback

2 Answers

up vote 3 down vote accepted

If you have compiled your swf with debug information and use the debug version of the player you can take a look at getStackTrace property from the Error object:

Quick example:

    public function getCallingInfos():Object{
        var tmp:Array=new Error().getStackTrace().split("\n");
        tmp=tmp[2].split(" ");
        tmp=tmp[1].split("/");
        return {namespaceAndClass:tmp[0], method:tmp[1]};
    }

    var infos:Object=getCallingInfos();
    trace(infos.namespaceAndClass, infos.method);
link|improve this answer
What would happen in a release version? Does trace disappear, and would your method return nothing, or break? – John Jan 11 '11 at 11:09
this example method is to be used in a debug environment not in a release one, as for the trace it will not dissapear unless you have choose the omit trace option or search for conditional compilation to have code that will be present in debug mode and not in release . – Patrick Jan 11 '11 at 11:50
If you want to still be able to trace errors when things go wrong in the production environment, consider using a Logger class and set the debug level by configuration rather than in the AS code. There is a logging framework in AS3 commons: code.google.com/p/as3-commons but so far I have written my own simple Logger class and found it quite sufficient. – weltraumpirat Jan 11 '11 at 14:15
@weltraumpirat with a release swf you will not be able to use getStackTrace to have method information since these informations are not included. – Patrick Jan 11 '11 at 14:22
True. Though in some cases, especially when you occasionally need runtime information about a more complex system, it might be worth not excluding the debug information in your compilation settings, but switching trace output on and off by setting a debug level. – weltraumpirat Jan 11 '11 at 14:39
feedback
    public static function getCurrentClassName(c:Object):String
    {
        var cString:String = c.toString();
        var cSplittedFirst:Array = cString.split('[object ');
        var cFirstString:String = String(cSplittedFirst[1]);
        var cSplittedLast:Array = cFirstString.split(']');
        var cName:String = cSplittedLast.join('');

        return cName;
    }

Used to check if a certain class is constructed or not.

Usage (here I put the code in the main class):

trace('[DEBUG]: '+ClassData.getCurrentClassName(this)+' constructed.');

trace returns:

[DEBUG]: Main constructed.
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.