Android Code Snippet Find active log statements in IDE

SubName: None

Description: Not really a code snippet, but useful none the less for the Regex challenged (like me).

I wanted to be able to find active Log statements in the IDE among the many that I had created for debugging and then commented out.

Using the Regex option in the search box, searching for ^\s*\t*Log will find Log statements that have no comment (') before them.

Tags: IDE Find Log Regex
 
Top