Logmaster is a simple tracing tool, targeting speed and flexibility. It’s logging and debugging capabilities are build with AIR so it is platform independent. The communication between the logger and the application is based on socket connection.

Sample

package {
import com.mindscriptact.logmaster.DebugMan;
import flash.display.Sprite;
import flash.events.Event;
import flash.events.MouseEvent;

/**
 * show diferent message types - 5 defalt + custom..
 * @author Deril
 */
public class MainBasics extends Sprite {

	public function MainBasics(){

		this.stage.addEventListener(MouseEvent.CLICK,testTrace)

		testTrace();

		DebugMan.debugTo(5,"...many people ask...");
		DebugMan.infoTo(5,"We aren't in an information age...");
		DebugMan.warnTo(5,"If you can't be a good example...");
		DebugMan.errorTo(5,"Admitting Error clears the Score ...");
		DebugMan.fatalTo(5,"It is fatal to enter any war...");
	}

	private function testTrace(event:Event = null):void {
		DebugMan.debug("...many people ask me ...");
		DebugMan.info("We aren't in an information age...");
		DebugMan.warn("If you can't be a good example...");
		DebugMan.error("Admitting Error clears the Score...");
		DebugMan.fatal("It is fatal to enter any war...");

		DebugMan.log("Happiness is a choice that requires effort at times.",
				DebugMan.LEVEL_INFO,
				0,
				DebugMan.TEXT_STYLE_BOLD_ITALIC_UNDERLINE,
				0x0000FF,
				[0xFF8080,0xFFFF00,0x00FF00]);
	}
}
}
Debug . URL.