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 92bdde5 commit 924ee93Copy full SHA for 924ee93
1 file changed
src/CodexJsonRpcConnection.ts
@@ -46,4 +46,7 @@ function attachLogs(proc: ChildProcessWithoutNullStreams, logPath: string) {
46
proc.stdout.on("data", (data: Buffer) => {
47
log("[STDOUT] " + data.toString());
48
});
49
+ proc.on("exit", (code) => {
50
+ log("[EXIT] " + code?.toString());
51
+ });
52
}
0 commit comments