I was reading the android documentation and saw that it is possible monitor logcat by command line, without necessarily having the IDE open.
I installed a minimalist version of ADB (only what is needed for it to work on the command line) and I am trying to monitor applications errors on my phone, for easier reading, I export to a text file at the command prompt, using command below:
adb logcat >> C:\Temp\logcat.txt
This command already suits my purpose, but it registers everything that happens on the phone, and I would like to register only errors, and if it is possible to filter this, from running applications.
Is there any way to do one or both of these filters per command line? I'm not sure how to apply the privacy tags in the command line.