Vivek Khandelwal
Vivek Khandelwal

Reputation: 7849

Disable log related to other application/system - android

I am using HTC One X.

There are some system application that has too many logs.

Because of that, I am able to see my application log only for some seconds. After some time, my logs are being remove from buffer since too many new logs from other application.

Can i disable log by using the tag.

Upvotes: 2

Views: 1613

Answers (1)

Royston Pinto
Royston Pinto

Reputation: 6721

Firstly, you cannot stop other applications from logging! Probably some apps more than others log too extensively causing an overflow. What you could try to do is

Force stop some apps so that thier logging activity is reduced(less chance it might reduce).

Secondly, as Rasel suggets,

Use DDMS features like filtering logs using application name, package name, TAG's etc. and pause logging.

In this way you will get a snapshot of your logs. Hope this helps!

Upvotes: 1

Related Questions