To save LogCat to a text file open up a terminal window and type: adb logcat -d > logcat.txt This will create a file named "logcat.txt" in your current directory. The -d option indicates that you are dumping the current contents and then exiting. If you do not use this option new lines of LogCat will be appended to the file, which may be useful. Since LogCat can get pretty ..