Skip to content

Commit 56944db

Browse files
committed
Updated tslint to capture console.log
1 parent a23cce4 commit 56944db

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

dist/exceptionless.node.js

-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/exceptionless.node.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/services/NodeModuleCollector.ts

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ export class NodeModuleCollector implements IModuleCollector {
2626

2727
loadedKeys.forEach(key => {
2828
let id = key.substr(pathLength);
29-
console.log(id);
3029
id = id.substr(0, id.indexOf('/'));
3130
loadedModules[id] = true;
3231
});

tslint.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
"info",
2222
"time",
2323
"timeEnd",
24-
"trace"
24+
"trace",
25+
"log"
2526
],
2627
"no-construct": true,
2728
"no-debugger": true,

0 commit comments

Comments
 (0)