tags:

views:

33

answers:

2

Hello,

So I can see Logcat working with no problems in my eclipse IDE. However, when I try to run it in a command prompt, i get a bunch of logcat data for about a second, and then the whole thing freezes.

Any ideas on how to fix this?

Thanks

A: 

That looks sort of how logcat works.

  • First you see a backlog or history of the messages.
  • Then it hangs, but only until some new event is received.
LatinSuD
Right, but when I try to open apps up and do various things, I never see it update at all. Certainly no where to the degree that I can see Logcat update in the eclipse IDE.
CrazyJay
+1  A: 

I managed to fix it.

I had two adb.exe files. One of them was in my WINDOWS directory, and the other was in my SDK tools directory. The eclipse IDE was using the version in my SDK tools directory. When I would use a command prompt to start adb, it would use the version in my WINDOWS directory. I deleted that version, and everything is working great now.

Thanks.

CrazyJay
So you were probably seeing a message like: * * logcat daemon is out of date, restarting * *
LatinSuD
Yes, I was seeing that now that you mention it. I thought that was because I had my eclipse IDE open though. Looks like I was wrong.
CrazyJay