get-console-logs
Retrieve console logs from the Vite Dev server to monitor real-time updates. Specify checkpoints or limit the number of logs to focus on relevant debugging information.
Instructions
Retrieves console logs from the development server
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| checkpoint | No | If specified, returns only logs recorded at this checkpoint | |
| limit | No | Number of logs to return, starting from the most recent log |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"checkpoint": {
"description": "If specified, returns only logs recorded at this checkpoint",
"type": "string"
},
"limit": {
"description": "Number of logs to return, starting from the most recent log",
"type": "number"
}
},
"type": "object"
}