We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eeb8f9f commit 03cd9fcCopy full SHA for 03cd9fc
src/lib/mcp-logger.ts
@@ -1,4 +1,6 @@
1
import { logger } from "./config";
2
+import fs from 'fs';
3
+import path from 'path';
4
5
/**
6
* Utility to help debug MCP protocol issues
@@ -31,8 +33,6 @@ export function initMcpSafeLogging(): void {
31
33
// Instead, we'll use a custom file logger implementation
32
34
35
// Create logs directory if it doesn't exist
- import fs from 'fs';
- import path from 'path';
36
const logsDir = path.join(process.cwd(), 'logs');
37
38
try {
0 commit comments