Is it possible to disable logging to the logcat for an application (APK) in Android entirely.
Since i make heavy use of my logcat output, I'd like to see only bits that are relevant to me but there are a lot of apps that write to the logcat, it is quite cluttered.
I would simply filter the output but it seems that the logcat entries only have the PID for deciding what the application is and the PID is something that changes everytime a process is restarted.
com.android.example
. If I write my logs likeLog.i("MyActivity', "Something log message);
, it wouldn't allow me to filter them by my package name. – Mridang Agarwalla Feb 21 '14 at 13:34