From 71d0896a4a1b31e14baeb7e427fc4724dbe972ff Mon Sep 17 00:00:00 2001 From: lauren Date: Wed, 23 Apr 2025 20:49:25 -0400 Subject: [PATCH] [forgive] Log inferEffectDependencies (#32996) This was missed earlier. Co-authored-by: Jordan Brown --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32996). * #33002 * #33001 * #33000 * #32999 * #32998 * #32997 * __->__ #32996 Co-authored-by: Jordan Brown --- .../babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts b/compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts index 61f57f68cf..8dfdc76978 100644 --- a/compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts +++ b/compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts @@ -392,6 +392,11 @@ function runWithEnvironment( if (env.config.inferEffectDependencies) { inferEffectDependencies(hir); + log({ + kind: 'hir', + name: 'InferEffectDependencies', + value: hir, + }); } if (env.config.inlineJsxTransform) {