Configure Logger at app level.

This commit is contained in:
Alexis Lahouze 2017-07-16 10:49:02 +02:00
parent 95fa835496
commit 877f77babd
2 changed files with 3 additions and 1 deletions

View File

@ -11,7 +11,7 @@ import { AccountService } from './account.service';
@NgModule({
imports: [
HttpModule,
NgLoggerModule.forRoot(Level.LOG),
NgLoggerModule,
RestangularModule
],
providers: [

View File

@ -9,6 +9,7 @@ import { BrowserModule } from '@angular/platform-browser';
import { UpgradeModule } from '@angular/upgrade/static';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { NgLoggerModule, Level } from '@nsalaun/ng-logger';
import { RestangularModule } from 'ngx-restangular';
import { AccountModule } from './accounts/account.module';
@ -19,6 +20,7 @@ import { ApiBaseURL } from './app.config';
BrowserModule,
UpgradeModule,
AccountModule,
NgLoggerModule.forRoot(Level.LOG),
RestangularModule.forRoot((RestangularProvider) => {
RestangularProvider.setBaseUrl(ApiBaseURL);