Skip to content

Commit 5ea3b3c

Browse files
committed
Disable Raven logging
1 parent 3b32081 commit 5ea3b3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/common/src/utils/debug.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const getDebugger: () => (key: string) => (...message: any[]) => void = () => {
2626
const global = getGlobal() as any;
2727
// Return a debugger that will log to sentry
2828
return (key: string) => (message: string) => {
29-
if (typeof global.Raven === 'object') {
29+
if (false || typeof global.Raven === 'object') {
3030
try {
3131
global.Raven.captureBreadcrumb({
3232
message: `${key} - ${message}`,

0 commit comments

Comments
 (0)