Skip to content

Commit 4925506

Browse files
committed
Revert debug log changes
1 parent 0d1492d commit 4925506

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

packages/common/src/utils/stream_transform.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,14 +136,12 @@ export function extractJsonLines(
136136
next: async () => {
137137
while (true) {
138138
if (isFinalEvent) {
139-
console.log('sending line done');
140139
return doneResult;
141140
}
142141

143142
{
144143
const first = pendingLines.shift();
145144
if (first) {
146-
console.log('sending line', first);
147145
return { done: false, value: first };
148146
}
149147
}
@@ -153,7 +151,6 @@ export function extractJsonLines(
153151
const remaining = buffer.trim();
154152
if (remaining.length != 0) {
155153
isFinalEvent = true;
156-
console.log('sending line', remaining);
157154
return { done: false, value: remaining };
158155
}
159156

0 commit comments

Comments
 (0)