Skip to content

Commit 3f4daf6

Browse files
author
Aleksander Grygier
committed
debug: Console log file format
1 parent 07c8795 commit 3f4daf6

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

apps/web/src/routes/api/transcribe/+server.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ export const POST: RequestHandler = async ({ request }) => {
2222
return json({ error: 'No audio file provided' }, { status: 400 });
2323
}
2424

25+
console.log('Audio file details:', audioFile);
26+
2527
const controller = new AbortController();
2628
const timeoutId = setTimeout(() => controller.abort(), 60000);
2729

0 commit comments

Comments
 (0)