( category: LogCategories, value: unknown, logHeader?: string )
| 102 | } |
| 103 | |
| 104 | public log( |
| 105 | category: LogCategories, |
| 106 | value: unknown, |
| 107 | logHeader?: string |
| 108 | ): void { |
| 109 | if (!this.config.isEnabled || !this.isCategoryEnabled(category)) return; |
| 110 | |
| 111 | this.logValue(category, value, logHeader); |
| 112 | } |
| 113 | } |
| 114 | |
| 115 | export default Logger; |
no test coverage detected