build_get_log_by_id
Retrieve a specific build log by ID from Azure DevOps, allowing access to detailed log content within a specified line range for targeted debugging and analysis.
Instructions
Get a specific build log by log ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
buildId | Yes | ID of the build to get the log for | |
endLine | No | Ending line number for the log content, defaults to the end of the log | |
logId | Yes | ID of the log to retrieve | |
project | Yes | Project ID or name to get the build log for | |
startLine | No | Starting line number for the log content, defaults to 0 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"buildId": {
"description": "ID of the build to get the log for",
"type": "number"
},
"endLine": {
"description": "Ending line number for the log content, defaults to the end of the log",
"type": "number"
},
"logId": {
"description": "ID of the log to retrieve",
"type": "number"
},
"project": {
"description": "Project ID or name to get the build log for",
"type": "string"
},
"startLine": {
"description": "Starting line number for the log content, defaults to 0",
"type": "number"
}
},
"required": [
"project",
"buildId",
"logId"
],
"type": "object"
}