diff --git a/resolvers/author.py b/resolvers/author.py index 09cf5e9c..be15e794 100644 --- a/resolvers/author.py +++ b/resolvers/author.py @@ -90,6 +90,8 @@ async def get_author_by_user_id(user_id: str): if author: await set_author_cache(author.dict()) except Exception as exc: + import traceback + traceback.print_exc() logger.error(exc) return author