Hi Android Developers!
I am trying to figure out what -r and -n parameters for logcat utilitiy mean. When my log file exceeds -r number of kilobytes in size; it deletes the whole content of my log file which leaves it empty or creates a new file to continue with the logging process? What exactly does -n mean as well, ofc?
Thanks for your replies in advance, Ilker
-r
limit? Apparently it's > the default (16) and less than what I'm specifying (10000). Clearly I can use binary search to determine it myself, but a doc that contains this would probably be useful to know about (haven't found it yet). Note that I use -r and -n, and it works for me. I invoke logCat from my Android app. A useful reference for the code is this Question: #6219845 – Nautical