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.