• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Copying data from LogCat

linuxxy

Lurker
Hi,
I have added some log message using Log.v. The issue is when the log information is displayed in LogCat(I am viewing it in eclipse), I want to copy some of the log message for future reference. But I am not able to copy these messages.

Can some-one let me know how I can copy the log information available in LogCat. Please do bear me if this is a naive question as I am just starting with android and am new to java also.
 
Are you on Windows or Linux?

If on Linux, you can do this:

adb logcat 2>&1 logcat.out

That will use the adb bridge to send logcat's output to a file (logcat.out).
 
Hi,
Thanks for the information. I was able to use adb to view log information. Also I was able to copy the log message to a file by selecting single/multiple lines in Eclipse LogCat view and saving it in a file.
 
Back
Top Bottom