test: improve debugging for test

This commit is contained in:
Krrish Dholakia 2024-08-05 19:40:49 -07:00
parent 4538eb848f
commit 5c6dcd6029
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: