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 51bffb3 commit 5431937Copy full SHA for 5431937
packages/integrations/src/captureconsole.ts
@@ -18,12 +18,12 @@ export class CaptureConsole implements Integration {
18
/**
19
* @inheritDoc
20
*/
21
- private readonly _levels: typeof CONSOLE_LEVELS = CONSOLE_LEVELS;
+ private readonly _levels: readonly string[] = CONSOLE_LEVELS;
22
23
24
25
26
- public constructor(options: { levels?: typeof CONSOLE_LEVELS } = {}) {
+ public constructor(options: { levels?: string[] } = {}) {
27
if (options.levels) {
28
this._levels = options.levels;
29
}
0 commit comments