That message is usually printed by Node when the V8 inspector/debugger is enabled. It often shows up as [error] in logs because Node writes the inspector banner to stderr, even if your app did not throw an actual exception.
I’d check for anything enabling --inspect in the deployed environment:
The most suspicious one would be a production env var like:
NODE_OPTIONS=--inspect
NODE_OPTIONS=--inspect=0
NODE_OPTIONS=--inspect-brk
If the log appears only when visiting that article page, I’d also check server-side code used by that route, especially any recently added debugging/profiling package or custom instrumentation.
If removing the inspector-related option makes the message disappear, then it was just Node starting the debugger, not a Vercel routing issue or someone accessing your site directly.
Yea so this ended up being Sentry while including includeLocalVariables in the config. Removing that removed this error in the logs.
This topic is closed. It no longer accepts new replies.