(debugFilter: string[])
| 143 | } |
| 144 | |
| 145 | setDebugFilter(debugFilter: string[]): void { |
| 146 | this._debugFilter = debugFilter; |
| 147 | Object.keys(this.childLoggers).map((key) => this.applyChildDebug(key)); |
| 148 | } |
| 149 | |
| 150 | private get debugFilter(): string[] { |
| 151 | return this._debugFilter.map((f) => f.trim()); |
no test coverage detected