Sentry Feedback: [JAVASCRIPT-31TF](https://sentry.sentry.io/feedback/?referrer=github_integration&feedbackSlug=javascript%3A6699871978&project=11276) The instructions (https://docs.sentry.io/platforms/javascript/best-practices/shared-environments/) are not super clear on how to use logs in shared environments. We'll run into this with microfrontends as well. We should expand the browser logging methods to explicitly supply a scope. For now users can wrap calls with `withScope` ```js withScope(scope, () => { Sentry.logger.info(...); }); ```