Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix stderr output #228

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 additions & 1 deletion src/client/stdio.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export class StdioClientTransport implements Transport {
this._serverParams.args ?? [],
{
env: this._serverParams.env ?? getDefaultEnvironment(),
stdio: ["pipe", "pipe", this._serverParams.stderr ?? "inherit"],
stdio: ["pipe", "pipe", this._serverParams.stderr ?? "pipe"],
shell: false,
signal: this._abortController.signal,
windowsHide: process.platform === "win32" && isElectron(),
Expand Down Expand Up @@ -158,6 +158,25 @@ export class StdioClientTransport implements Transport {
this._process.stdout?.on("error", (error) => {
this.onerror?.(error);
});

// Create a separate channel for logging
const logChannel = new Stream.PassThrough();

// Handle log messages based on their level
logChannel.on("data", (chunk) => {
const log = chunk.toString();
if (log.toLowerCase().includes("error")) {
// Error logs go to stderr
process.stderr.write(log);
this.onerror?.(new Error(log));
} else {
// Info logs go to stdout, prefixed to distinguish from JSON-RPC messages
process.stdout.write(`[LOG] ${log}`);
}
});

// Pipe stderr to log channel
this._process.stderr?.pipe(logChannel);
});
}

Expand Down