AIRLogger is a useful standalone
tracer (like LuminicTracer - Flash Inspector i.e.) targeting SWF and running on the Adobe Integrated Runtime.
The console is written by Cedric Nehemie (aka
Abe -an abstract friend of mine

).

Here you can find the HaXe API for it.
Usage:
var e = { text : "test", number : 10 } ;
AIRLogger.debug( e );
AIRLogger.info( e );
AIRLogger.warn( e );
AIRLogger.error( e );
AIRLogger.fatal( e );
and/or :
AIRLogger.setTraceRedirection();
trace( e );
You can download the AIRLogger Console
here
HaXe AIRLogger API with documentation and sample are available
here.
Notes:
- You can use it for debugging SWF8/9
- AIRLogger has a buffer: the logs will be displayed when console is available (even launched after your SWF)
- The console is multi SWF tabs (you can debug several SWF at the same time)
- The logs are in HTML format (you can copy-paste as you want, and has better performaces)
- An automatic update system will be available soon on the console
- Beautiful skin, light and useful, enjoy the AIRLogger !