1
0
Fork 0
mirror of synced 2024-08-17 11:01:26 +12:00

Merge pull request #8517 from Budibase/add-extra-auth-logging

Add extra auth logging to authenticated.ts
This commit is contained in:
Rory Powell 2022-11-04 08:33:19 +00:00 committed by GitHub
commit 016df010db

View file

@ -152,6 +152,7 @@ export = (
return next() return next()
} }
} catch (err: any) { } catch (err: any) {
console.error("Auth Error", err?.message || err)
// invalid token, clear the cookie // invalid token, clear the cookie
if (err && err.name === "JsonWebTokenError") { if (err && err.name === "JsonWebTokenError") {
clearCookie(ctx, Cookies.Auth) clearCookie(ctx, Cookies.Auth)