logger-improved-2
All checks were successful
Deploy on push / deploy (push) Successful in 24s

This commit is contained in:
Untone 2024-02-27 16:41:09 +03:00
parent 4c328370c2
commit eadae7f639

View File

@ -236,7 +236,9 @@ async def get_author_followers(_, _info, slug: str):
)
return json.loads(cached) if cached else get_with_stat(q)
except Exception as exc:
import traceback
logger.error(exc)
logger.error(traceback.format_exc())
return []