You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: add note about nested extraLogging field in holdout assignment logging (#691)
Add a note to the holdout configuration documentation to help users
locate holdout information when their SDK implementation nests it
within the extraLogging field rather than flattening it to the top level.
Copy file name to clipboardExpand all lines: docs/feature-flagging/concepts/holdout-config.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -100,3 +100,5 @@ class MyAssignmentLogger(AssignmentLogger):
100
100
})
101
101
```
102
102
103
+
> **Note:** Some SDK implementations may nest the holdout information within an `extraLogging` field. If you don't see `holdoutKey` and `holdoutVariation` at the top level of the event, check for them in `event.extraLogging.holdoutKey` and `event.extraLogging.holdoutVariation`.
0 commit comments