Search code examples
android-studiologcat

What is the syntax for filtering Logcat with multiple tags in Android Studio?


When filtering LogCat in Android Studio's "Android Device Monitor", what is the syntax that should be used for multiple tags?

For example, i would like to view all logcat occurences tagged as either "foo" or "bar"


Solution

  • Use one | character to delimit your tags:

    E.g.: tag1|tag2|...|tagN

    Worked for me in this version of the Android Device Monitor:

    enter image description here