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 56e7648 commit f48596eCopy full SHA for f48596e
packages/browser/src/integrations/breadcrumbs.ts
@@ -163,7 +163,7 @@ export class Breadcrumbs implements Integration {
163
164
// this fails for some browsers. :(
165
if (originalConsoleLevel) {
166
- originalConsoleLevel.apply(global.console, args);
+ Function.prototype.apply.call(originalConsoleLevel, global.console, args);
167
}
168
};
169
});
0 commit comments