How to read System logcat on android hardware [w810>?

How to read the system logarithm on iron android [w810>?

I know that this is possible on root devices, but how to achieve on an undisturbed device?

Please suggest

Thanks in advance.

+4
source share
2 answers

if you need to read the logs of your application, you do not need any permissions, especially not root.

however, if you need to read all the logs, you can check this message:

fooobar.com/questions/30100 / ...

if you don’t have a root and you want to read all the logs, you cannot (or maybe the application can do this if it is a system application).

+4
source

You can access all non-root logs using remote debugging. Here is an application that does this:

https://github.com/tananaev/rootless-logcat

0
source

Source: https://habr.com/ru/post/1485167/


All Articles