How Can I Tell Which App Is Producing Debug Statements In Android Studio?
I'm trying to figure out what is producing this debug output: 04-25 15:58:04.883 1542-5012/? D/NetworkStatsCollection: getHistory:mUID 10266 isVideoCallUID: false The above output
Solution 1:
Use adb shell ps | fgrep 1511
to see what app is tied to the PID of 1511, which according to your LogCat output is the app that is doing the logging.
(BTW, in the future, please post LogCat output as text, not screenshots)
Post a Comment for "How Can I Tell Which App Is Producing Debug Statements In Android Studio?"