We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f8be97 commit 2a67950Copy full SHA for 2a67950
packages/node-logger-plugin-sentry/package.json
@@ -60,7 +60,7 @@
60
"author": "Brainbits <moriarty@brainbits.net>",
61
"license": "MIT",
62
"dependencies": {
63
- "@sentry/node": "^7.60.1"
+ "@sentry/node": "^8.2.1"
64
},
65
"devDependencies": {
66
"@babel/cli": "^7.16.0",
packages/node-logger-plugin-sentry/src/index.js
@@ -43,7 +43,7 @@ export default class PluginSentry {
43
maxBreadcrumbs: this.config.sentry.maxBreadcrumbs,
44
integrations(integrations) {
45
return integrations
46
- .filter(integration => !(integration instanceof Sentry.Integrations.Console));
+ .filter(integration => integration.name !== 'Console');
47
48
});
49
}
0 commit comments