Console Logs

Use Appelium logs through the following APIs:

1
2
3
4
5
6
AppeliumFeedback.Log.v("Verbose message")
AppeliumFeedback.Log.d("Debug message")
AppeliumFeedback.Log.i("Info message")
AppeliumFeedback.Log.w("Warning message")
AppeliumFeedback.Log.e("Error message")
AppeliumFeedback.Log.a("Assertion message")

All the logging levels allow you to pass an optional tag for even better granularity:

AppeliumFeedback.Log.e("Transaction failed", "Payment")