From a18ad12ff7905a3bacdfde4a923427e7d919be32 Mon Sep 17 00:00:00 2001 From: Untone Date: Wed, 8 May 2024 23:57:31 +0300 Subject: [PATCH] lesslog --- resolvers/author.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resolvers/author.py b/resolvers/author.py index e4a53780..dae367f6 100644 --- a/resolvers/author.py +++ b/resolvers/author.py @@ -60,7 +60,7 @@ async def get_author(_, _info, slug="", author_id=0): lookup_result = local_session().execute(author_query).first() if lookup_result: [found_author] = lookup_result - logger.debug(found_author) + # logger.debug(found_author) if found_author: logger.debug(f"found author id: {found_author.id}") author_id = found_author.id if found_author.id else author_id