read_electron_logs
Retrieve and monitor Electron application logs for debugging and behavior analysis. Specify log types, line count, and continuous tailing for real-time insights.
Instructions
Read console logs and output from running Electron applications. Useful for debugging and monitoring app behavior.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
follow | No | Whether to follow/tail the logs | |
lines | No | Number of recent lines to read (default: 100) | |
logType | No | Type of logs to read |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"follow": {
"description": "Whether to follow/tail the logs",
"type": "boolean"
},
"lines": {
"description": "Number of recent lines to read (default: 100)",
"type": "number"
},
"logType": {
"description": "Type of logs to read",
"enum": [
"console",
"main",
"renderer",
"all"
],
"type": "string"
}
},
"type": "object"
}