Angular 1 and Angular 2 Integration

Angular 2 exception logging

These packages provide an easy to use angular 2 error logging system for applications and each logger has an Observable.
//Install npm module.
npm install //logging/save angular2-log
//For Example
System.config({
    map: {
        'angular2-log': 'node_modules/angular2-log'
    },
    packages: {
        'angular2-log': {
            defaultExtension: 'js'
        }
    }
});

//Add angular2-logger library in your apps.
import { Logger } from "angular2-logger/core";

//Inject your logger into your objects and use it.
export class Component {
    constructor(public Logger: Logger) {
        this.Logger.error('This is custom error !');
    }
}


Live Result,


For more go below links,

ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^