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