Skip to content

Commit 9f13a02

Browse files
fix(symx): Remove log message (#83491)
Remove the log message that was introduced with (#83381) as it is no longer needed.
1 parent c490653 commit 9f13a02

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

src/sentry/lang/native/processing.py

+2-10
Original file line numberDiff line numberDiff line change
@@ -539,19 +539,11 @@ def emit_apple_symbol_stats(apple_symbol_stats, data):
539539
# This is done to temporally collect information about the events for which symx is not working correctly.
540540
if in_random_rollout("symbolicate.symx-logging-rate") and os_name and os_version:
541541
os_description = os_name + str(os_version)
542-
logger.info(
543-
"Failed to find symbols using symx",
544-
extra={
545-
"id": data.get("event_id"),
546-
"modules": old,
547-
"os_description": os_description,
548-
"os_filter": options.get("symbolicate.symx-os-description-list"),
549-
},
550-
)
551542
if os_description in options.get("symbolicate.symx-os-description-list"):
552543
with sentry_sdk.isolation_scope() as scope:
553544
scope.set_context(
554-
"Event Info", {"id": data.get("event_id"), "modules": str(old)}
545+
"Event Info",
546+
{"id": data.get("event_id"), "modules": old, "os": os_description},
555547
)
556548
sentry_sdk.capture_message("Failed to find symbols using symx")
557549

0 commit comments

Comments
 (0)