The simple way
From the repository you can download "Example.as" to get you started quickly. Here's the process outlined.
Imports
For the simplest of cases you only need to import the logger itself. For event based logging you will also need to import the special event class.
import no.allegro.framework.utils.AILogger;
import no.allegro.framework.events.AILoggerEvent;
Setup
Get the instance, add it to the display list and start logging.
addChild(AILogger.instance);
Logging
Call the static log method.
AILogger.log("My Fisher Price log message");Displaying the logger
You can pull up the logger in three ways; Pressing SHIFT + Enter, right clicking the application and clicking "Open AILogger" or with the public method toggle().
AILogger.toggle();