Skip to content
This repository was archived by the owner on Oct 11, 2022. It is now read-only.

Commit f8a8ff9

Browse files
committed
Merge branch 'alpha' of github.com:withspectrum/spectrum into 2.4.73
2 parents 05bfa02 + 41b63fc commit f8a8ff9

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/actions/authentication.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,19 +34,14 @@ export const setRavenUserContext = (id: string) => {
3434
// logs the user id to Sentry
3535
// if Raven hasn't loaded yet, try every 5s until it's loaded
3636
if (window.Raven) {
37-
console.log('Raven setUserContext!');
3837
return window.Raven.setUserContext({ id });
3938
} else {
40-
console.log('No Raven :( Try again in 5s');
4139
const interval = setInterval(() => {
42-
console.log('Raven?');
4340
if (window.Raven) {
44-
console.log('Yes! setUserContext');
4541
window.Raven.setUserContext({ id });
4642
clearInterval(interval);
4743
return;
4844
}
49-
console.log('No :( Try again in 5s');
5045
}, 5000);
5146
}
5247
};

0 commit comments

Comments
 (0)