Android logs
You can manually log events to the IBM MobileFirst™ Quality Assurance server. This log can be useful when you are debugging problems or reviewing crash reports that users submit because you can track custom defined activities from your application.
Logging to IBM MobileFirst Quality Assurance
MobileFirst Quality Assurance comes with its own logging com.ibm.mqa.Log library, which you can use instead of the standard Android logging library. This class mimics the standard android.util.Log library and has the same interfaces, including Log.v, Log.d, Log.i, Log.w, and Log.e methods. Also, the MobileFirst Quality Assurance logging methods still send your data to the Logcat tool.
The easiest way to send all logs through MobileFirst Quality Assurance is to replace the import android.util.Log; import statement with this statement: import com.ibm.mqa.Log;.