Note:
This question is a duplicate of Filter log messages by PID or application package in Android.
But there is no correct answer to that question & it is very very old.
I can't make any changes in the app codebase as suggested in the accepted answer, I can only access the app build.
As per Android Docs: https://developer.android.com/studio/command-line/logcat#alternativeBuffers
We should be able to filter logs of a given application using the command:
adb logcat --pid=<pid>
--pid= ... Only print logs from the given PID.
But I am getting an error "unrecognized option" when I enter it in cmd.
Got PID of application using:
adb shell ps <app-package-name>
Note: Want a solution without using cmd alone, not using Android Studio.