2015-12-17 13:49:33 -08:00
|
|
|
// #docregion
|
2015-12-11 15:37:35 -08:00
|
|
|
import {Injectable} from 'angular2/core';
|
2015-11-28 20:43:09 -08:00
|
|
|
|
|
|
|
@Injectable()
|
2015-12-17 13:49:33 -08:00
|
|
|
// #docregion class
|
2015-11-28 20:43:09 -08:00
|
|
|
export class Logger {
|
2015-12-17 13:49:33 -08:00
|
|
|
log(msg: any) { console.log(msg); }
|
2015-11-28 20:43:09 -08:00
|
|
|
error(msg: any) { console.error(msg); }
|
2015-12-17 13:49:33 -08:00
|
|
|
warn(msg: any) { console.warn(msg); }
|
|
|
|
}
|
|
|
|
// #enddocregion class
|