EmilDo
EmilDo

Reputation: 1177

Android Studio 1.4 not showing Log.d() for selected application

I stumbled upon a strange issue/bug with A.Studio 1.4

While running my app I have by default the selection in logcat: enter image description here All but one Log.d() of my app actually shows here as they should, the only one Log.D that appears is inside onCreate...

When i Select "No Filter": enter image description here All other Log.d() appear but among a "sea" of unnecessary log information every second. So i have to use the searchbox..

Previously all Log.d was shown only for the selected application which made it easy to see and find, now it is impossible among all other data. Any suggestion of how to fix that and see only error exceptions and debug info?

Upvotes: 0

Views: 988

Answers (3)

raditya gumay
raditya gumay

Reputation: 3011

I just update to Android Studio 1.5 Preview. and works!

Upvotes: 0

Eli Blokh
Eli Blokh

Reputation: 12293

Try to create your own filter (inside Edit Filter Configuration). You can set package name of your application there. After that you'll see all your Log messages.

Upvotes: 1

Jon
Jon

Reputation: 565

I see this if some log entries have tags and some don't. Try adding the same tag to all related entries. You'll also then be able to filter based on that tag. Create a filter by selecting Edit Filter Configuration from the filter dropdown menu.

Upvotes: 0

Related Questions