Skip to content

Commit

Permalink
Cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
boehlerlukas committed Dec 15, 2021
1 parent 21a33c9 commit 3c811d9
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion published/6.4.7/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion published/latest/index.js

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions src/AutoConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ export default class AutoConfig {
Gleap.enableNetworkLogger();
}

if (flowConfig.networkLogPropsToIgnore) {
Gleap.setNetworkLogFilters(flowConfig.networkLogPropsToIgnore);
}

if (!flowConfig.enableConsoleLogs) {
Gleap.disableConsoleLogOverwrite();
}
Expand Down
4 changes: 0 additions & 4 deletions src/NetworkInterception.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ class GleapNetworkIntercepter {
Object.values(this.requests)
);

console.log(requests);

if (!this.filters || this.filters.length === 0) {
return requests;
}
Expand All @@ -39,8 +37,6 @@ class GleapNetworkIntercepter {
}
}

console.log(requests);

return requests;
}

Expand Down

0 comments on commit 3c811d9

Please sign in to comment.