I actually don't use my debug class that way. I have a logging framework for that, that's what logging is for. My Debug class has things like
// I usually use these for debugging and it avoids the need of an
// additional import.
function whatIs( obj:* ):String{ return getQualifiedClassName( obj )}
function describe( obj:* ):XML{ return describeType( obj ); }
I also have a getLines method -- it returns long Strings so that I can easily look at the logging traces and see specific points.
But the most important one:
function getStack():String {
try
{
throw new Error( "Someone set us up the bomb!" );
}
catch( e:Error )
{
return e.getStackTrace();
}
}
I even have a wrapper around getStack which returns the class and method which was most recently called before the method which called getStack().