tags:

views:

44

answers:

3

I'am using log to store all the transfer. How can I check the logged data?

Log.i("login", "recevied " + getResponse(response.getEntity()));
+1  A: 

If you are using eclipse, go to Window -> Open view -> Other and select Logcat. It will give you a user interface where you can see all the logs generated by the handset or the emulator.

If you are not using Eclipse, you can use adb logcat from the command line.

Cristian
+1  A: 

Check logcat. If you're debugging under Eclipse, a logcat view is included in the debug perspective.

Pontus Gagge
+2  A: 

use the Dalvik Debug Monitor

DDMS ships in the tools/ directory of the SDK. Enter this directory from a terminal/console and type ddms (or ./ddms on Mac/Linux) to run it.

or, if you are using Eclipse, you can add the Android "LogCat" view to your workspace.

slup