start_device_log_cap
Capture logs from Apple devices by launching an app with console output. Requires device UDID and app bundle ID. Returns a session ID for log monitoring.
Instructions
Starts capturing logs from a specified Apple device (iPhone, iPad, Apple Watch, Apple TV, Apple Vision Pro) by launching the app with console output. Returns a session ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bundleId | Yes | Bundle identifier of the app to launch and capture logs for. | |
deviceId | Yes | UDID of the device (obtained from list_devices) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"bundleId": {
"description": "Bundle identifier of the app to launch and capture logs for.",
"type": "string"
},
"deviceId": {
"description": "UDID of the device (obtained from list_devices)",
"type": "string"
}
},
"required": [
"deviceId",
"bundleId"
],
"type": "object"
}