Debugging With Logcat
Once having gotten used to logcat (on MAC) it is quite OK. However there are two issues I would like to know if there is a way to improve them. a) how many lines are stored in logc
Solution 1:
As far as i understood, you talking about logcat window in Eclipse.
- You can increase count of lines in this window by modifing
Window->Preferences->Android->LogCat->Maximum number of logcat messages to buffer
value. You can open Terminal window and redirect logcat in file:
adb logcat > $HOME/logcat.xt
than you can view this file in another Terminal window, search this file with your favorite text editor, filter it with grep etc.
Post a Comment for "Debugging With Logcat"