Skip to content

Commit 95938f0

Browse files
committed
removed stream output chunk debug log
Signed-off-by: Sree Narayanan <[email protected]>
1 parent e60e0e8 commit 95938f0

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

workbench/fastify/src/index.ts

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -164,15 +164,6 @@ server.get('/api/trigger', async (req: any, reply) => {
164164
const { done, value } = await reader.read();
165165
if (done) break;
166166

167-
if (chunkCount < 4) {
168-
console.log(
169-
'[fastify output-stream] chunk',
170-
chunkCount,
171-
value?.constructor?.name,
172-
typeof value,
173-
value
174-
);
175-
}
176167
chunkCount += 1;
177168

178169
const framed = toFramedChunk(value);

0 commit comments

Comments
 (0)