Skip to content

Commit efd205c

Browse files
committed
More logging
1 parent ae653e3 commit efd205c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/sockets/wsAuthorizer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export const wsAuthorizer = async (event: WebSocketAuthorizerEvent) => {
2626
try {
2727
console.log(`Verifying JWT: ${token}`);
2828
const payload = await verifier.verify(token);
29-
console.log("Validated");
29+
console.log(`Validated: ${JSON.stringify(payload)}`);
3030
return {
3131
isAuthorized: true,
3232
context: {

0 commit comments

Comments
 (0)