Reputation: 3858
I am using the command
Log.i(TAG, "Received a message");
But I am not able to find where it is outputted.
Can any body help me about this?
Upvotes: 0
Views: 1005
Reputation: 2332
You can also use the adb logcat
command from the console (if adb
is in your path).
Upvotes: 0
Reputation: 64429
You can view it in eclipse in the debug environment, and you can use adb: http://developer.android.com/guide/developing/tools/adb.html#logcat
You can also download something like aLogCat on a device for looking at live logfile information.
Upvotes: 4