Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to pull the log file from a device to my PC. How can I do that?

share|improve this question

8 Answers

up vote 33 down vote accepted

Logcollector is a good option but you need to install it first.

When I want to get the logfile to send by mail, I usually do the following:

share|improve this answer
This commandline doesn't work for me, I get this output. logcat read: Invalid argument – neoneye Aug 24 '11 at 9:23
1  
in win: adb.exe – Macarse Aug 24 '11 at 11:38

EDIT:

The internal log is a circular buffer in memory. There are actually a few such circular buffers for each of: radio, events, main. The default is main.

To obtain a copy of a buffer, one technique involves executing a command on the device and obtaining the output as a string variable.

SendLog is an open source App which does just this: http://www.l6n.org/android/sendlog.shtml

The key is to run logcat on the device in the embedded OS. It's not as hard as it sounds, just check out the open source app in the link.

share|improve this answer
This dumps the output to the screen, I need it in a file. – Pentium10 May 21 '10 at 14:45
You can send logs with aLogCat. Or simply copy-paste from DDMS :P – Márton Molnár May 21 '10 at 18:33
@molnarm I concede my answer was slightly over-engineered if that's all he needs to do =) – Brad Hein May 21 '10 at 18:55
@BradHein You said SendLog was open source but I can't seem to find the source code. Any idea where it is? – smith324 Mar 17 '12 at 0:40

A simple way is to make your own log collector methods or even just an existing log collector app from the market. For my apps I made a report functionality which sends the logs to my email (or event to another place, once you get the log you can do whether you want with it). Here is a simple example about hot to get the log file from a device: http://code.google.com/p/android-log-collector/

share|improve this answer

Often I get the error "logcat read: Invalid argument". I had to clear the log, before reading from the log.

I do like this:

prompt> cd ~/Desktop
prompt> adb logcat -c
prompt> adb logcat | tee log.txt
share|improve this answer
Thanks! I was having that error for a long time, that logcat -c fixed it immediately! – Jords Jan 31 '12 at 1:16

There is an app called Log Collector that emails you the log from the device - very easy.

https://market.android.com/details?id=com.xtralogic.android.logcollector

share|improve this answer

I would use something of this sort :

$adb logcat -d > logcat.txt

The -d option dumps the entire circular buffer into the text file and if you are looking for a particular action/intent try

$adb logcat -d | grep 'com.whatever.you.are.looking.for' -B 100 -A 100 > shorterlog.txt

Hope this helps :)

share|improve this answer

I think you can only do it if the device is connected to the PC, using your USB cable and with USB debugging selected. You can then view the log file just as you would when using the emulator.

share|improve this answer

The first stop for all Android questions is the Android Developers site.

This question is addressed here: http://developer.android.com/guide/appendix/faq/commontasks.html#logging

share|improve this answer
But that link describes how to do it on the emulator, right? – aioobe May 21 '10 at 13:15
That doesn't count, either emulator or real device it has too work. As far I got, I must have the adb running and ddms. – Pentium10 May 21 '10 at 13:18
That page does not describe how to READ log filed from a device, only how to print to a log file. – Camille Sévigny Jan 5 '12 at 12:56
There is no "file", only logcat in Android. It can be displayed in debugging tools (eclipse, adb, etc.). You can save the output from eclipse or adb into a file if you want. See also the accepted response above for another alternative. – chr Jan 6 '12 at 2:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.