(serverName: string)
| 34 | * Gets the path to MCP logs for a server. |
| 35 | */ |
| 36 | export function getMCPLogsPath(serverName: string): string { |
| 37 | return join(CACHE_PATHS.mcpLogs(serverName), DATE + '.jsonl') |
| 38 | } |
| 39 | |
| 40 | type JsonlWriter = { |
| 41 | write: (obj: object) => void |
no outgoing calls
no test coverage detected