Skip to content

Commit 4f91b1d

Browse files
authored
Fix #10: stop logging conversation tokens
Stop logging elevenlabs conversation tokens to the console. Fixes slopus/happy-server#10
1 parent a95a072 commit 4f91b1d

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

server/sources/app/api/routes/voiceRoutes.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ export function voiceRoutes(app: Fastify) {
100100
}
101101

102102
const data = await response.json() as any;
103-
console.log(data);
104103
const token = data.token;
105104

106105
log({ module: 'voice' }, `Voice token issued for user ${userId}`);
@@ -110,4 +109,4 @@ export function voiceRoutes(app: Fastify) {
110109
agentId
111110
});
112111
});
113-
}
112+
}

0 commit comments

Comments
 (0)