2016-06-23 09:47:54 -07:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. 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.io/license
|
|
|
|
*/
|
|
|
|
|
2016-04-28 17:50:03 -07:00
|
|
|
import {Injectable} from './di/decorators';
|
2016-06-08 16:38:52 -07:00
|
|
|
import {print, warn} from './facade/lang';
|
|
|
|
|
2015-12-15 08:34:44 -08:00
|
|
|
@Injectable()
|
|
|
|
export class Console {
|
|
|
|
log(message: string): void { print(message); }
|
2016-04-25 19:52:24 -07:00
|
|
|
// Note: for reporting errors use `DOM.logError()` as it is platform specific
|
2016-07-30 21:44:04 -07:00
|
|
|
warn(message: string): void { warn(message); }
|
2016-04-25 19:52:24 -07:00
|
|
|
}
|