After upgrading to Android Studio 2.3, my Log.d reports are no longer showing up in the run menu. I rebooted my machine twice. Strangely, the reports are showing up when I
This worked for me: the mistake I was making was leaving out the message. For example I was only providing the first string parameter (the tag) and leaving the actual message out:
Log.d("MyTag", "")
When I stopped putting an empty string as the 2nd param and putting a random Char, or anything for that matter in the 2nd param then it showed up in my LogCat, otherwise it got skipped.
Hope this helps someone!