Skip to content

Commit

Permalink
Remove console logging
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-yau-ttd committed Nov 22, 2023
1 parent d341239 commit 136b300
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/web/utils/ErrorView.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
const analyticsIdentifier = (errorId?: string, errorHash?: string) => {
if (!errorHash && !errorId) return 'No error identifier';
console.log('errorHash', errorHash);
console.log('errorId', errorId);
return errorHash
? `error hash: ${errorHash}` // From backend
: `error ID: ${errorId}`; // Generated by frontend to make it possible to triage user reported errors.
Expand Down

0 comments on commit 136b300

Please sign in to comment.