test: improve debugging for test

This commit is contained in:
Krrish Dholakia 2024-08-05 19:40:49 -07:00
parent dce7c459f8
commit 4ba576724c
4 changed files with 19 additions and 3 deletions

View file

@ -1389,6 +1389,7 @@ class PrismaClient:
WHERE v.token = '{token}'
"""
print_verbose("sql_query being made={}".format(sql_query))
response = await self.db.query_first(query=sql_query)
if response is not None: