I'm using adb logcat
in the **\Android\sdk\platform-tools
directory. I'd like to filter out the log messages by package name, so I can see just the log messages that come from my app. I've gotten as far as using
adb logcat *:E
which only displays the messages on the error level. Then I tried to filter out things by tags (so if there is no other way to filter things out by app/package name, I thought I'd just put a name in the tag to filter those), but running something like
adb logcat TAG:E
doesn't seem to filter out anything. I've had a look at the Android Studio user guide, but that didn't get me any further, either.
I'm using Android Studio, and I'd like to see the log of my app after the app crashed when I'm really using it and not just debugging in Android Studio.
Thanks in advance for any help or tips.