cf9339a
1
2
3
4
5
export function printProcessStdoutEvent(raw: string, _debug: boolean): void { const line = raw.trim(); if (line) console.log(line); }