Reputation: 226
I have a LG Optimus 4x HD and I'm trying to run my android application on it. the problem is that the logcat doesn't show any of my log messages although it shows messages of other apps as well as the system messages. I selected my device from the DDMS Perspective, enabled debugging mode on my device, don't have any filters in my logcat, tried verbose, error, ...
Upvotes: 2
Views: 2363
Reputation: 191
I've just encountered the same problem. If you're using Android Studio pay attention to select the application you want to debug in logcat's panel. Otherwise it will show all the things about your phone
Upvotes: 0
Reputation: 4339
One simple solution is to restart your IDE (Eclipse or whatever you're using).
If it does not work, please try:
adb kill-server
, then adb devices
(so adb will be restarted and you should see your device listed) and then adb logcat
.You should see logs, so then launch your application from the device (not reopening the IDE).
Upvotes: 3