dart_io_http_enable_timeline_logging
Enable or disable HTTP timeline logging for Flutter apps via the default debug port or a custom port to monitor HTTP activity.
Instructions
RPC: Enable or disable HTTP timeline logging. Connects to the default Flutter debug port (8181) unless specified otherwise.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
enabled | Yes | Whether to enable or disable HTTP timeline logging | |
port | No | Optional: Custom port number if not using default Flutter debug port 8181 |
Input Schema (JSON Schema)
{
"properties": {
"enabled": {
"description": "Whether to enable or disable HTTP timeline logging",
"type": "boolean"
},
"port": {
"description": "Optional: Custom port number if not using default Flutter debug port 8181",
"type": "number"
}
},
"required": [
"enabled"
],
"type": "object"
}