angular/packages/core/src/console.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
548 B
TypeScript
Raw Normal View History

/**
* @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 {
2017-03-02 17:37:01 +00:00
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
2017-03-02 17:37:01 +00:00
warn(message: string): void {
console.warn(message);
}
}