Skip to content

Commit 3c811d9

Browse files
committed
Cleanup.
1 parent 21a33c9 commit 3c811d9

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

build/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

published/6.4.7/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

published/latest/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/AutoConfig.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,10 @@ export default class AutoConfig {
5050
Gleap.enableNetworkLogger();
5151
}
5252

53+
if (flowConfig.networkLogPropsToIgnore) {
54+
Gleap.setNetworkLogFilters(flowConfig.networkLogPropsToIgnore);
55+
}
56+
5357
if (!flowConfig.enableConsoleLogs) {
5458
Gleap.disableConsoleLogOverwrite();
5559
}

src/NetworkInterception.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ class GleapNetworkIntercepter {
1212
Object.values(this.requests)
1313
);
1414

15-
console.log(requests);
16-
1715
if (!this.filters || this.filters.length === 0) {
1816
return requests;
1917
}
@@ -39,8 +37,6 @@ class GleapNetworkIntercepter {
3937
}
4038
}
4139

42-
console.log(requests);
43-
4440
return requests;
4541
}
4642

0 commit comments

Comments
 (0)