Reputation: 179
It looks like I have inadvertantly set something incorrectly but can't remember changing anything :-(
Anyone come across this problem before - have looked at previous posts but none seem relevant.
Regards,
Oliver
Upvotes: 4
Views: 10828
Reputation: 5546
In Android Studio, which I have found to be much more reliable and intuitive than Eclipse, I found this to be a common issue. For me what solves it (device is automatically set when running your app) besides checking code, is to Quit and restart the emulator or Quit Android Studio and Emulator and reopen/restart
Upvotes: 0
Reputation: 1120
Just go to DDMS perspective and click on the device's name in upper left corner and done your log cat will Start with a BOOm :P
Upvotes: 0
Reputation: 2036
Tried this: https://stackoverflow.com/a/9826502/1238317
Check in your logcat window - TOP RIGHT corner PAUSE button || (Pause receiving new logcat messages)
Few clicks + eventually restart eclipse (usually works in my case)
Upvotes: 1
Reputation: 1009
I had the same problem a while back. I was using the emulator and device for debugging. Apparently you have to select the device listed in the DDMS view whose logs you want to see. My logs were blank because the device that I was expecting logs from was not the one selected.
Hope that helps
Upvotes: 11
Reputation: 57702
There are possible reasons and solutions:
Check if you see output if you use the command line adb logcat
Upvotes: 0
Reputation: 751
Check your LogCat window to see if you are filtering and make sure to set the debug level to Verbose.
Upvotes: 0