| 162 | |
| 163 | @Injectable() |
| 164 | export class DebugConsole extends Console { |
| 165 | logs: string[] = []; |
| 166 | override log(message: string) { |
| 167 | this.logs.push(message); |
| 168 | } |
| 169 | override warn(message: string) { |
| 170 | this.logs.push(message); |
| 171 | } |
| 172 | } |
| 173 | |
| 174 | /** |
| 175 | * Provides a debug console instance that allows to capture all |
nothing calls this directly
no outgoing calls
no test coverage detected