Hello,
All the exceptions even if they are not in (try…catch) block seem to be marked with handled as yes in nodejs project.
For example, the following error is logged as handled:yes in tag
const Sentry = require(“@sentry/node”);
Sentry.init({
dsn: URL
tracesSampleRate: 1.0,
});console.log(hellovar). << Throws error but logged as handled
Is this expected behaviour? In python, similar logic logged the error as handled:no as expected