Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an Android application that "spams" the LogCat and I would like to remove its logcat entries in order to have an output more readable.

Is it possible to have a filter that remove the LogCat entries for a specific tag name? Or a search pattern that does the trick?

share|improve this question
@pankaj It is not exactly what I want. I want a way to remove some specific entries rather than isolate them. – Schloeloe Oct 25 '11 at 13:48

4 Answers

up vote 46 down vote accepted

Yes. Create a filter where the "By log tag" field is

^(?!.*(MYTAG)).*$

where MYTAG is the tag you don't want to see. I am not a regexp expert (a "regexpert"? ;-) ) so there may be a simpler way to do that negation, but I just tried that and it works.

You can play around with the filter in the field just above the Log Cat message area, by entering filter strings there, like this:

tag:^(?!.*(DeskClock|dalvik|wpa)).*$

which will show all messages except tags "DeskClock", "dalvik", and "wpa".

share|improve this answer
You can also add this regex to the search bar above the listing in the Eclipse LogCat View. Thanks! – Scott Biggs Nov 13 '12 at 17:03
Thank you. I've always had problems building regexp that would show only the output that doesn't match. Very helpful. DDMS is actually useful now. – chriv Jan 7 at 1:52

Depends on which way you view your logcat.

If you are using the GUI logcat interface it's best to create a filter for the tags you want to see. These get dropped into a seperate category. Though the ui changed a bit you can use this old answer from me. Should be clear how this is used (make sure that the "display saved filters tab" button is pressed though, otherwise you won't see the "Add filter" button. You can find that on the top-right of the log). I'm not aware of any option that lets you filter out certain tags from the whole logstream.

If you are using the command line you can mute certain tags. Example:

adb logcat AndroidRuntime:S *:V

shows everything (*:V) up to the verbose log level, except the tag AndroidRuntime, which will be limited to the "silence" loglevel, which means it will print nothing.

To display a single tag you can use

adb logcat *:S MyAppTag:V OtherTag:V

Same way, everything gets silenced except MyAppTag and OtherTag. See Filtering Log Output for more details.

share|improve this answer
Thanks, adb logcat <tag-name>:S *:V is what I was looking for. I would like the same behavior in the Eclipse GUI logcat interface, but for now I will use the command line. – Schloeloe Oct 25 '11 at 13:45

I have a trick:

 Log.d(TAG, "MyTag" + message);

As you can see, when I filter with a key "MyTag", it only shows log from my tag.

share|improve this answer

This is a late response, but maybe useful. In the Eclipse environment, in the LogCat view, above the table there is a search box. Pay attention, when empty it reads:

Search for messages. Accepts Java regexes. Prefix with pid:, app:, tag: or text: to limit scope.

It means you can filter your tag by writing there tag:MyTag or even regex tag:My.*

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.