Skip to content

Commit 6593152

Browse files
author
Aleksander Grygier
committed
debug
1 parent ff932f4 commit 6593152

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ export const POST: RequestHandler = async ({ request }) => {
1717
return json({ error: 'No audio file provided' }, { status: 400 });
1818
}
1919

20-
console.log('Audio file details:', audioFile.type, audioFile.size, audioFile.name);
20+
console.log('Audio file type:', audioFile.type);
21+
console.log('Audio file size:', audioFile.size, audioFile.name);
22+
console.log('Audio file name:', audioFile.name);
2123

2224
const controller = new AbortController();
2325
const timeoutId = setTimeout(() => controller.abort(), 60000);

0 commit comments

Comments
 (0)