Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

logcat in android studio not showing

After updating Android Studio to version 2.2.3, sometimes(manytimes) it doesn't show logs

Also After re-running application, it doesn't show logs

I have tried restart button in logcat but doesn't show effects and have checked all criteria like No Filters, Verbose, selected emulator and application package.

Restarting Android Studio works

to be more clear , when i clear logs it doesn't show logs again and every time I have to restart Android Studio

can anyone post a solution to this ?

like image 646
Amit Vaghela Avatar asked Dec 22 '16 07:12

Amit Vaghela


1 Answers

Try this solutions,

1) Press Alt+6 twice to restart the logcat window.it will show the log outputs.

2) Restart logcat Change the log level to Debug (or anything else) and back to Verbose. unplugging and plugging back in the device running adb kill-server && adb start-server Close Android Studio and launch ddms on the command line. Restart Android Studio

3) try pressing Alt + 6 to open Log tab. Look at the log level:- it must be verbose. Restart adb. If that doesn't works restart the android studio.

4) enter image description here

In Android 2.2, for some reason, Firebase was selected by default in the dropdown box marked above. So logs didn't drop. I just needed to change it to No Filters. Then it worked.

5) Go to Tools -> Android -> Android Device Monitor (DDMS) Now you would see Devices tab at the right side, you would see a view menu icon, just click on it and Reset adb Now you should be able to get the log messages displayed on the LogCat console.

i hope any of these much solution can help you!!!

like image 111
jeel raja Avatar answered Sep 28 '22 08:09

jeel raja