Cocos MCP Log Bridge

by czh2774
Verified
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.testCommand = void 0; /** * 测试命令 */ function testCommand() { console.log('Test command executed!'); // 输出日志 console.log('Log Bridge is running!'); console.warn('WebSocket server started'); console.error('Ready to receive connections'); } exports.testCommand = testCommand;