File size: 135 Bytes
b152fd5
 
 
 
1
2
3
4
5
export function printHttpStdoutEvent(raw: string, _debug: boolean): void {
  const line = raw.trim();
  if (line) console.log(line);
}