This commit is contained in:
Tom Moor
2022-09-30 22:44:13 -04:00
parent 923afad032
commit 4bb2a8ca1c
2 changed files with 4 additions and 4 deletions

View File

@@ -77,7 +77,7 @@ class Logger {
if (env.SENTRY_DSN) {
Sentry.withScope(function (scope) {
scope.setLevel(Sentry.Severity.Warning);
scope.setLevel("warning");
for (const key in extra) {
scope.setExtra(key, extra[key]);
@@ -117,7 +117,7 @@ class Logger {
if (env.SENTRY_DSN) {
Sentry.withScope(function (scope) {
scope.setLevel(Sentry.Severity.Error);
scope.setLevel("error");
for (const key in extra) {
scope.setExtra(key, extra[key]);