I need to get the Android device timestamp in the format hh:mm:ss:SS. I am able to view the time displayed in the Logcat of Eclipse. Is it the computer\'s time or is it the Andr
use adb logcat -v threadtime in terminal to take the logs from device, it will include date and time.
adb logcat -v threadtime
if you want to redirect these logs into a text file then use command in terminal.
adb logcat -v threadtime > folder_path_in_the_computer/filename.txt