ngx-log
TypeScript icon, indicating that this package has built-in type declarations

1.0.2 • Public • Published

Angular 2 Style Guide MIT license npm version

ngx-log

Angular Log Service Library, automatically hide console log on Production

Installation

To install this library, run:

$ npm install ngx-log --save

Usage

Functions:

infor(textstring, param?: any, force?: boolean)
warn(textstring, param?: any, force?: boolean)
error(textstring, param?: any, force?: boolean)
log(textstring, param?: any, force?: boolean)

From your Angular AppModule:

LogModule.forRoot(isProductionboolean);

Sample import snippet

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
 
import { AppComponent } from './app.component';
 
// Import ngx-log library
import { LogModule } from 'ngx-log';
 
@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
 
    // Import LogModule 
    // process.env.NODE_ENV should be defined on your Webpack (production/development/test)
    LogModule.forRoot(process.env.NODE_ENV === 'production')
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

Once the library is imported, you can use it in your components, directives and pipes of your Angular application:

import { LogService } from 'ngx-log';
 
@Component({
    selector: 'app',
    templateUrl: 'app.component.html',
    styleUrls: ['app.component.scss']
})
export class AppComponent {
  constructor(private logService: LogService) {
    
  }
 
  ngOnInit() {
    // this will not show on Production mode
    // but we can force show on Production by add
    // this.logService.info('App component init!', null, true);
    this.logService.info('App component init!');
  }
}

License

MIT © Nguyen Tran

Readme

Keywords

Package Sidebar

Install

npm i ngx-log

Weekly Downloads

1

Version

1.0.2

License

MIT

Last publish

Collaborators

  • nguyentr