feat - log exceptions to OTEL

This commit is contained in:
Ishaan Jaff 2024-06-10 12:34:18 -07:00
parent d5a1cc282e
commit a27f7e2817
2 changed files with 11 additions and 2 deletions

View file

@ -272,7 +272,7 @@ def test_call_with_invalid_key(prisma_client):
except Exception as e:
print("Got Exception", e)
print(e.message)
assert "Authentication Error, Invalid token passed" in e.message
assert "Authentication Error, Invalid proxy server token passed" in e.message
pass