We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b305410 commit 24bff02Copy full SHA for 24bff02
packages/core/src/integrations/mcp-server/validation.ts
@@ -3,7 +3,7 @@
3
*/
4
5
import { DEBUG_BUILD } from '../../debug-build';
6
-import { logger } from '../../utils/logger';
+import { debug } from '../../utils/logger';
7
import type { JsonRpcNotification, JsonRpcRequest } from './types';
8
9
/** Validates if a message is a JSON-RPC request */
@@ -56,6 +56,6 @@ export function validateMcpServerInstance(instance: unknown): boolean {
56
) {
57
return true;
58
}
59
- DEBUG_BUILD && logger.warn('Did not patch MCP server. Interface is incompatible.');
+ DEBUG_BUILD && debug.warn('Did not patch MCP server. Interface is incompatible.');
60
return false;
61
0 commit comments