* Log API response
(method: string, url: string, status: number, data?: any)
| 156 | * Log API response |
| 157 | */ |
| 158 | logResponse(method: string, url: string, status: number, data?: any) { |
| 159 | this.debug('API Response', { |
| 160 | method, |
| 161 | url, |
| 162 | status, |
| 163 | data, |
| 164 | }); |
| 165 | } |
| 166 | |
| 167 | /** |
| 168 | * Log tool call |