* Logs a message to the console if it is not in the set of ignored messages. * * @param message - The message to log to the console. * * This method overrides the `log` method of the `ɵConsole` class. It checks if the * message is in the `IGNORED_LOGS` set. If it is not, it delegates
(message: string)
| 30 | * the parent class's `log` method. Otherwise, the message is suppressed. |
| 31 | */ |
| 32 | override log(message: string): void { |
| 33 | if (!IGNORED_LOGS.has(message)) { |
| 34 | super.log(message); |
| 35 | } |
| 36 | } |
| 37 | } |