adb_logcat
Capture and manage Android device logs using logcat. Specify filters, device IDs, and line counts to extract relevant debugging information for app development and troubleshooting.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
device | No | Specific device ID (optional) | |
filter | No | Logcat filter expression (optional) | |
lines | No | Number of lines to return (default: 50) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"device": {
"description": "Specific device ID (optional)",
"type": "string"
},
"filter": {
"description": "Logcat filter expression (optional)",
"type": "string"
},
"lines": {
"default": 50,
"description": "Number of lines to return (default: 50)",
"type": "number"
}
},
"type": "object"
}