1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Stop Sentry from capturing console.error and logger.error (#3785)

Signed-off-by: Hung-Han (Henry) Chen <chenhungh@gmail.com>
This commit is contained in:
chh 2021-09-13 10:56:12 +03:00 committed by GitHub
parent 8ba024c145
commit e2b096fae1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 6 deletions

View File

@ -25,7 +25,6 @@ import type Transport from "winston-transport";
import { consoleFormat } from "winston-console-format"; import { consoleFormat } from "winston-console-format";
import { isDebugging, isTestEnv } from "./vars"; import { isDebugging, isTestEnv } from "./vars";
import BrowserConsole from "winston-transport-browserconsole"; import BrowserConsole from "winston-transport-browserconsole";
import { SentryTransport } from "./logger-transports";
import { getPath } from "./utils/getPath"; import { getPath } from "./utils/getPath";
const logLevel = process.env.LOG_LEVEL const logLevel = process.env.LOG_LEVEL
@ -36,9 +35,7 @@ const logLevel = process.env.LOG_LEVEL
? "error" ? "error"
: "info"; : "info";
const transports: Transport[] = [ const transports: Transport[] = [];
new SentryTransport("error")
];
if (ipcMain) { if (ipcMain) {
transports.push( transports.push(

View File

@ -19,7 +19,7 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
import { CaptureConsole, Dedupe, Offline } from "@sentry/integrations"; import { Dedupe, Offline } from "@sentry/integrations";
import * as Sentry from "@sentry/electron"; import * as Sentry from "@sentry/electron";
import { sentryDsn, isProduction } from "./vars"; import { sentryDsn, isProduction } from "./vars";
import { UserStore } from "./user-store"; import { UserStore } from "./user-store";
@ -65,7 +65,6 @@ export function SentryInit() {
}, },
dsn: sentryDsn, dsn: sentryDsn,
integrations: [ integrations: [
new CaptureConsole({ levels: ["error"] }),
new Dedupe(), new Dedupe(),
new Offline(), new Offline(),
], ],