Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to highlight filter/search hits in Android Studio Logcat

I filter my Logcat lines based on a single String, as depicted below:

I have filtered/searched my logcat for "Aggregate"

But there I face numerous long long lines and I have much trouble recognizing the wanted values in the middle of the lines. For example, in the above picture, it would be to much convenience to see all "Aggregate" keywords highlighted.

Is there any way to highlight the filter/search hits on the Logcat console?

like image 517
Behnam Avatar asked May 23 '15 07:05

Behnam


People also ask

How do I change the color of Logcat?

In your preferences, either search for “logcat” or manually go to Editor > Color Scheme > Android Logcat.

How do I search in Logcat?

View your app logs Build and run your app on a device. Click View > Tool Windows > Logcat (or click Logcat in the tool window bar).

What is PID in Logcat?

pid = process ID. uid = user ID of the application that owns that process. gid = group IDs of the application that owns that process.

What is regex in Logcat Android?

regexp,AndroidStudio,logcat. Logcat provides several default filter options (Verbose, Info, Debug etc) and a simple pattern match filter, but the regex filter is the most powerful option for customizing logcat output. Here, I provide 3 useful patterns that have been frequently used to search the logcat more efficiently ...


1 Answers

From what I see, you use the "Filter", that will show all only lines with word matches to your filter.

If you want to search inside the filter results and get highlighted text matches, click on Cmd+s (on Mac) or Ctrl+s (on PC) and search away (for your example, type "Aggregate")

like image 137
dors Avatar answered Nov 10 '22 14:11

dors