-
Notifications
You must be signed in to change notification settings - Fork 294
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
logcat has been migrated to `threadtime` format from `time` with backward compatibility for the latter. Searching now supports Android Studio conventions: - Supported keywords are: pid and tag, any other non-keyword filtering are matched against the log message - Each keyword takes the intended arguments followed by a : (colon) (e.g., pid:1 denotes filtering all the logs produced by the PID 1) - All keywords are and'ed together (e.g., pid:1651 tag:Ime means filtering all the logs with the tag containing Ime belonging to the PID 1651) - Adding a - (minus) before the keyword denotes exclusion (e.g., -pid:13 denotes listing all logs except PID 13) - Adding a ~ (tilde) sign before : (colon) denotes a regular expression match - Adding a = (equal) sign before : (colon) denotes an exact match (e.g., tag:Ime filters any logs with a tag containing the string Ime whereas tag=:Ime filters any logs with a tag that is equal to Ime). pid keyword always does an exact match - ~ (tilde) and = (equal) signs are mutually exclusive with ~ (tilde) preferred over = (equal), i.e., when both signs are present, only ~ (tilde) sign is used for regular expression matching - Non-exact and non-regex filters are always case insensitive. Signed-off-by: Muntashir Al-Islam <[email protected]>
- Loading branch information
1 parent
876e9a7
commit bb7e1a4
Showing
9 changed files
with
483 additions
and
208 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.