I can't figure out how to search for a string in Android Studio Logcat output? I know how to filter, but that hides surrounding context. How can I just scroll to the next occurrence of a chosen string?
Asked
Active
Viewed 251 times
1 Answers
2
Open the Logcat tab and press ctrl + f keys and enter the string you want to search. You can use the arrow keys on the keyboard to jump to the next and previous result.

Apps Maven
- 1,314
- 1
- 4
- 17
-
Thanks! I had tried that (cmd + f on Mac), but it didn't work because the output area didn't have focus. After clicking within the output area it worked. – user1055568 Nov 20 '20 at 19:07