MCPcopy Index your code
hub / github.com/angular/angular-cli / log

Method log

packages/angular/ssr/src/console.ts:32–36  ·  view source on GitHub ↗

* 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)

Source from the content-addressed store, hash-verified

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}

Callers

nothing calls this directly

Calls 2

hasMethod · 0.65
logMethod · 0.65

Tested by

no test coverage detected