diff --git a/docs/platforms/javascript/common/configuration/integrations/trpc.mdx b/docs/platforms/javascript/common/configuration/integrations/trpc.mdx index 934a5378e2717..36ec81b2c2c92 100644 --- a/docs/platforms/javascript/common/configuration/integrations/trpc.mdx +++ b/docs/platforms/javascript/common/configuration/integrations/trpc.mdx @@ -59,4 +59,11 @@ const sentrifiedProcedure = t.procedure.use(sentryMiddleware); _Type: `boolean`_ -Defaults to `false`. If enabled, the RPC input will be captured in reported events. +Defaults to `false`. If enabled, the RPC input will be captured in error events as `trpc` context. + + + +If you observe nested objects in the `trpc` context being truncated with "`[Object]`", you can define a `normalizeDepth` value to allow for more deeply nested objects in context. +Note that the default depth for `trpc` context is 5. + +