We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c669d7 commit 9377507Copy full SHA for 9377507
1 file changed
src/sentry/billing/platform/core/service.py
@@ -6,6 +6,7 @@
6
from collections.abc import Callable
7
from typing import Any, TypeVar
8
9
+from google.protobuf.json_format import MessageToDict
10
from google.protobuf.message import Message
11
12
from sentry.utils import metrics
@@ -120,6 +121,7 @@ def wrapper(self: BillingService, request: T) -> R:
120
121
extra={
122
"duration_ms": duration_ms,
123
"response_type": type(result).__name__,
124
+ "response": MessageToDict(result),
125
**extras,
126
},
127
)
0 commit comments