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 3b32081 commit 5ea3b3cCopy full SHA for 5ea3b3c
packages/common/src/utils/debug.ts
@@ -26,7 +26,7 @@ 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
- if (typeof global.Raven === 'object') {
+ if (false || typeof global.Raven === 'object') {
30
try {
31
global.Raven.captureBreadcrumb({
32
message: `${key} - ${message}`,
0 commit comments