We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ea3b3c commit 43cec9cCopy full SHA for 43cec9c
packages/common/src/utils/debug.ts
@@ -26,6 +26,8 @@ const getDebugger: () => (key: string) => (...message: any[]) => void = () => {
26
const global = getGlobal() as any;
27
// Return a debugger that will log to sentry
28
return (key: string) => (message: string) => {
29
+ // Disable it for now, seems to affect performance. That's the last thing we want
30
+ // from this (https://github.com/CompuIves/codesandbox-client/issues/1671)
31
if (false || typeof global.Raven === 'object') {
32
try {
33
global.Raven.captureBreadcrumb({
0 commit comments