Skip to content

Commit d256650

Browse files
committed
Adds path debug statement for auth issue
1 parent 7b0881a commit d256650

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

api-server/src/server/middlewares/request-authorization.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ export default function getRequestAuthorisation({
7474
const { path } = req;
7575
console.log('######## requesting auth', path, isAllowedPath(path));
7676
if (!isAllowedPath(path)) {
77+
console.log('##### path:', path);
7778
console.log('##### getting access token');
7879
const { accessToken, error, jwt } = getAccessTokenFromRequest(
7980
req,

0 commit comments

Comments
 (0)