PrvN
PrvN

Reputation: 2395

How to read System logcat on android jelly bean?

How to read System logcat on android jelly bean?

I know it will possible on rooted devices but how to achieve on non rooted device?

Please suggest

Thanks in advance.

Upvotes: 4

Views: 3079

Answers (2)

Anton Tananaev
Anton Tananaev

Reputation: 2523

It is possible to access all logs without root using remote debugging. Here is an app that does it:

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

Upvotes: 0

android developer
android developer

Reputation: 116322

if you need to read the logs of your own app, you don't need any kind of permission, especially not root.

however, if you need to read all logs, you can check out this post:

https://stackoverflow.com/a/12642918/878126

if you don't have root and you wish to read all logs, you can't (or maybe the app can do it if it's a system app).

Upvotes: 4

Related Questions