diff --git a/ahserver/auth_api.py b/ahserver/auth_api.py index a992ad7..b8e8b03 100755 --- a/ahserver/auth_api.py +++ b/ahserver/auth_api.py @@ -57,6 +57,7 @@ class AuthAPI(AppLogger): @web.middleware async def checkAuth(self,request,handler): + print('checkAuth() called ..................') path = request.path user = await auth.get_auth(request) is_ok = await self.checkUserPermission(user, path)