We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d1492d commit 4925506Copy full SHA for 4925506
1 file changed
packages/common/src/utils/stream_transform.ts
@@ -136,14 +136,12 @@ export function extractJsonLines(
136
next: async () => {
137
while (true) {
138
if (isFinalEvent) {
139
- console.log('sending line done');
140
return doneResult;
141
}
142
143
{
144
const first = pendingLines.shift();
145
if (first) {
146
- console.log('sending line', first);
147
return { done: false, value: first };
148
149
@@ -153,7 +151,6 @@ export function extractJsonLines(
153
151
const remaining = buffer.trim();
154
152
if (remaining.length != 0) {
155
isFinalEvent = true;
156
- console.log('sending line', remaining);
157
return { done: false, value: remaining };
158
159
0 commit comments