mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
a6cdbec09f
There are many TSLint rule flags in the source code that have no effect, and they can be safely removed to keep the code clean. PR Close #59365
22 lines
548 B
TypeScript
22 lines
548 B
TypeScript
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.dev/license
|
|
*/
|
|
|
|
import {Injectable} from './di';
|
|
|
|
@Injectable({providedIn: 'platform'})
|
|
export class Console {
|
|
log(message: string): void {
|
|
// tslint:disable-next-line:no-console
|
|
console.log(message);
|
|
}
|
|
// Note: for reporting errors use `DOM.logError()` as it is platform specific
|
|
warn(message: string): void {
|
|
console.warn(message);
|
|
}
|
|
}
|