When working on mobile with AIR you cab use the logcat tool available in the Andorid SDK to grab information from the device and dumping them via USB on a log screen.
If you are interested to get only the trace statements and the ActionScript error messages you can restict the logcat output via command line with the snippet you find below.
The reason why you can do this filtering is because during the packaging process each AIR application has the word air added to the application ID, therefore using the filter I.air guarantees to dump all messages for the currently running AIR application.
The letter I stays for the Information priority level.
If you are interested to get only the trace statements and the ActionScript error messages you can restict the logcat output via command line with the snippet you find below.
The reason why you can do this filtering is because during the packaging process each AIR application has the word air added to the application ID, therefore using the filter I.air guarantees to dump all messages for the currently running AIR application.
The letter I stays for the Information priority level.
androidSDK/platform-tools/adb logcat|grep "I.air"


