Quiet some logs, fix a bug (#8404)

* Composer, 142k

* Log geolocation error at most once per session

* Clean thumb cache, 1.4m

* Quiet generic network errors

* Handle undefined notification payloads
This commit is contained in:
Eric Bailey
2025-05-27 13:25:41 -05:00
committed by GitHub
parent df2f62e94d
commit 342f820ec0
5 changed files with 45 additions and 13 deletions
+11 -1
View File
@@ -27,5 +27,15 @@ init({
environment: process.env.NODE_ENV,
dist,
release,
ignoreErrors: [`t is not defined`, `Can't find variable: t`],
ignoreErrors: [
/*
* Unknown internals errors
*/
`t is not defined`,
`Can't find variable: t`,
/*
* Un-useful errors
*/
`Network request failed`,
],
})