7.1.0 • Published 5 years ago

@bizappframework/ng-logging-application-insights v7.1.0

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

ng-logging-application-insights

npm version Gitter

Contains Microsoft Azure Application Insights logging target for Angular projects.

Installation

npm install @bizappframework/ng-logging-application-insights

Setup

import { BrowserAppInsightsModule } from '@bizappframework/ng-application-insights';
import { LoggerModule } from '@bizappframework/ng-logging';
import { AppInsightsLoggerModule } from '@bizappframework/ng-logging-application-insights';

@NgModule({
    imports: [
        // Other module imports

        // Logging
        LoggerModule.forRoot({ minLevel: 'trace' }),
        AppInsightsLoggerModule,
        BrowserAppInsightsModule.forRoot({
            // instrumentationKey: environment.aiInstrumentationKey,
            verboseLogging: true,
            enableDebug: true
        })
    ]
})
export class AppModule { }

Usage

import { Component, OnInit } from '@angular/core';

import { Logger, LoggerFactory } from '@bizappframework/ng-logging';

@Component({
    selector: 'app-root',
    templateUrl: './app.component.html'
})
export class AppComponent implements OnInit {
    private readonly _logger: Logger;

    constructor(loggerFactory: LoggerFactory) {
        this._logger = loggerFactory.createLogger('app');
    }

    ngOnInit(): void {
        this._logger.debug('Testing debug');
    }
}

Example

ng-logging-aspnetcore-sample

License

MIT License