From c27df786490e24ca80cb79d8f243fa1e40fa99cc Mon Sep 17 00:00:00 2001 From: Tegasaur <43019816+Tegasaur@users.noreply.github.com> Date: Fri, 12 Mar 2021 13:49:45 -0600 Subject: [PATCH] Update index.tsx Documentation for sentry in response to the onboarding assignment. --- src/index.tsx | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index d9fc5f8..a22fdbf 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -12,6 +12,18 @@ import Loading from "./views/Message/Loading"; import { RecoilRoot as GlobalState } from "recoil"; import Error from "./views/Message/Error"; +/* +Sentry Initialization: + +Sentry acts to organize error reports in an intuitive fashion. +It is a catch all that records most issues that take place in +your application on the sentry dashboard. The set up for sentry in this application is +seen below. For more info go to: + +ACM Sentry how to guide: https://docs.google.com/document/d/1jD4rd2_0TvC2RyjU3XNs1HudUsQBH8kBFLHsKOEvPgc +Sentry docs: https://docs.sentry.io/ +*/ + Sentry.init({ dsn: process.env.REACT_APP_SENTRY_DSN, autoSessionTracking: true,