From 8beb5dbc99c69d1ce77bf9990fffd968ef498635 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Mon, 12 Jun 2023 14:39:01 +0800 Subject: [PATCH] bugfix --- ahserver/auth_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ahserver/auth_api.py b/ahserver/auth_api.py index 8fc2f61..e742fdd 100755 --- a/ahserver/auth_api.py +++ b/ahserver/auth_api.py @@ -64,7 +64,7 @@ class AuthAPI(AppLogger): is_ok = await self.checkUserPermission(user, path) if is_ok: return await handler(request) - # print(f'**{path} forbidden**') + print(f'**{user=}, {path} forbidden**') raise web.HTTPForbidden() async def checkUserPermission(self, user, path):