File tree 1 file changed +2
-10
lines changed
1 file changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -539,19 +539,11 @@ def emit_apple_symbol_stats(apple_symbol_stats, data):
539
539
# This is done to temporally collect information about the events for which symx is not working correctly.
540
540
if in_random_rollout ("symbolicate.symx-logging-rate" ) and os_name and os_version :
541
541
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
- )
551
542
if os_description in options .get ("symbolicate.symx-os-description-list" ):
552
543
with sentry_sdk .isolation_scope () as scope :
553
544
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 },
555
547
)
556
548
sentry_sdk .capture_message ("Failed to find symbols using symx" )
557
549
You can’t perform that action at this time.
0 commit comments