Kowlown
Kowlown

Reputation: 1166

Filter android monitor logs by package name

Is it possible, like with the old monitor, to filter logs from the new android monitor by package name without having an application launched by Android Studio ?

I tried to create logcat filter configuration, but it doesn't work if I didn't launch an application with Android Studio.

Upvotes: 0

Views: 4496

Answers (1)

Nakul
Nakul

Reputation: 1329

You can certainly view logcat with the help of adb. Use command like

adb logcat | grep <your_package_name>

as per @TruongHieu mentioned in comment, flag is true.

for more info.

Upvotes: 2

Related Questions