I'am using log to store all the transfer. How can I check the logged data?
Log.i("login", "recevied " + getResponse(response.getEntity()));
I'am using log to store all the transfer. How can I check the logged data?
Log.i("login", "recevied " + getResponse(response.getEntity()));
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.
Check logcat. If you're debugging under Eclipse, a logcat view is included in the debug perspective.
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.