De MonsterDebugger

Posted by | Posted in AIR, Actionscript 3.0, Flash, Flex | Posted on 09-04-2009

I just came across this and I love it.  When it comes to coding I'm a sucker for "survivalist" code practices.  That is, self contained projects.  This debugger works like many others but has the option to export the needed class from the menu.  This is great as all you need is the application and all of the classes and examples are self-contained.  The thing I love most about this debugger is it's simplcity.  Basically here is what you need in your code:

import nl.demonsters.debugger.MonsterDebugger;
private var debugger:MonsterDebugger;
debugger = new MonsterDebugger(this);
MonsterDebugger.trace(this, "Hello World!");

Instead of "Hello World!" you can put objects or anything else as the second argument and have it trace out.  Pretty sweet.

CHECK IT OUT