@oh-my-pi/exa 1.3.372 → 1.3.373
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/tools/shared.ts +2 -2
package/package.json
CHANGED
package/tools/shared.ts
CHANGED
|
@@ -14,8 +14,8 @@ export const EXA_MCP_URL = 'https://mcp.exa.ai/mcp'
|
|
|
14
14
|
export const WEBSETS_MCP_URL = 'https://websetsmcp.exa.ai/mcp'
|
|
15
15
|
|
|
16
16
|
// Log paths
|
|
17
|
-
const EXA_ERROR_LOG = path.join(os.homedir(), '.pi
|
|
18
|
-
const VIEW_ERROR_LOG = path.join(os.homedir(), '.pi
|
|
17
|
+
const EXA_ERROR_LOG = path.join(os.homedir(), '.pi', 'exa_errors.log')
|
|
18
|
+
const VIEW_ERROR_LOG = path.join(os.homedir(), '.pi', 'view_errors.log')
|
|
19
19
|
|
|
20
20
|
function logExaError(msg: string): void {
|
|
21
21
|
fs.appendFileSync(EXA_ERROR_LOG, `[${new Date().toISOString()}] ${msg}\n`)
|