Reputation: 1165
Is there a way to stop Admob from outputting a log into the logcat? I was looking around and the answers that iwas given were for programs that are about to be released. I just find that it clogs up my logcat, especially if i am debugging other stuff and they get lost in the logs due to Admob.
Upvotes: 2
Views: 762
Reputation: 48232
See this question How to filter out a tagname in Eclipse LogCat viewer
They propose to filter LogCat view by something like
tag:^(?!.*(AdMob)).*$
I never tried that myself.
Upvotes: 4