Eclipse Logcat Viewer Annoying

In the logcat viewer in Eclipse, if it is configured to filter messages coming from the application that I am currently debugging, the list flickers. I assume that it reloads the list every time a log message arrives from my device, even if it is not displayed due to the filter. However, it makes reading logs very difficult.

Is there any way to counter this error? Or is there an alternative log viewer for Android?

+5
source share
3 answers

When it flickers on mine, I use the Scroll Lock option in the Logcat window. You can find it in the upper right with other buttons such as Save Log, etc.

+3
source

, , .

Eclipse , , , eclipse.

adb, , , ( , cmd, xterm ..)

adb logcat PackageManager:V com.myapp.package:V *:S

*: S " " : V " " "".

Linux, MacOS .. ( IX) Windows GnuWin32

adb logcat | grep "Some search term"

, regexp

adb logcat | grep -E "SearchTerm1|SearchTerm2"

( * IX), ,

adb logcat | grep "Some term" | tee myfile.txt

.

+2

I believe that there are two spectators trapped, or at least once was. The new one showed the behavior you describe while the old one worked as expected. I believe this was fixed in a later release of the Android SDK / Eclipse tools.

0
source

All Articles