Skip to content

Commit

Permalink
fix: remove log calls (#890)
Browse files Browse the repository at this point in the history
closes #889
  • Loading branch information
tobiasengelhardt authored Feb 16, 2021
1 parent 02d325d commit eb055aa
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,6 @@ export class TreeOptions {
actionMapping: IActionMapping;

constructor(private options: ITreeOptions = {}) {
console.log('actionMapping', this.options.actionMapping);
console.log('defaultActionMapping', defaultActionMapping);

this.actionMapping = {
...defaultActionMapping,
...this.options.actionMapping,
Expand Down
9 changes: 9 additions & 0 deletions projects/angular-tree-component/tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,15 @@
true,
"element",
"kebab-case"
],
"no-console": [
true,
"debug",
"info",
"time",
"timeEnd",
"trace",
"log"
]
}
}

0 comments on commit eb055aa

Please sign in to comment.