Skip to content

Commit a4b6516

Browse files
committed
fix
1 parent acb251f commit a4b6516

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/catcher.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ export default class Catcher {
9595
/**
9696
* Console log handler
9797
*/
98-
private readonly consoleTracking: boolean = true;
98+
private readonly consoleTracking: boolean;
9999

100100
/**
101101
* Catcher constructor
@@ -142,7 +142,7 @@ export default class Catcher {
142142
},
143143
});
144144

145-
if (settings.consoleTracking) {
145+
if (this.consoleTracking) {
146146
initConsoleCatcher();
147147
}
148148

0 commit comments

Comments
 (0)