Plandex / cli /src /adapters /process /format-event.ts
AUXteam's picture
Upload folder using huggingface_hub
cf9339a verified
raw
history blame
138 Bytes
export function printProcessStdoutEvent(raw: string, _debug: boolean): void {
const line = raw.trim();
if (line) console.log(line);
}