(callback: () => void)
| 18 | } |
| 19 | |
| 20 | initLogContext(callback: () => void): void { |
| 21 | this.contextStorage.run({}, () => { |
| 22 | this.errorContextStorage.run({}, callback); |
| 23 | }); |
| 24 | } |
| 25 | |
| 26 | addLogContext(context: Record<string, any>): void { |
| 27 | const store = this.contextStorage.getStore(); |
no test coverage detected