rm comments

This commit is contained in:
Andrew Pareles 2025-05-30 21:10:23 -07:00
parent e324257e1a
commit 2b4283a0f0
2 changed files with 2 additions and 2 deletions

View file

@ -88,7 +88,7 @@ class MCPService extends Disposable implements IMCPService {
const onEvent = (e: MCPServerEventResponse) => {
console.log('GOT EVENT', e)
// console.log('GOT EVENT', e)
this._setMCPServerState(e.response.name, e.response.newServer)
}
this._register((this.channel.listen('onAdd_server') satisfies Event<MCPServerEventResponse>)(onEvent));

View file

@ -195,7 +195,7 @@ export class MCPChannel implements IServerChannel {
}
}
} else if (server.command) {
console.log('ENV DATA: ', server.env)
// console.log('ENV DATA: ', server.env)
transport = new StdioClientTransport({
command: server.command,
args: server.args,