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

1.1.2 • Public • Published

NgxHttpLogger

Simple logger for HTTP requests, made with Native Angular HttpInterceptor. Angular6+ required.

Install

npm i --save-dev ngx-http-logger

Example of use

// App Module (app.module.ts)
import { HttpLoggerModule } from 'ngx-http-logger';
 
@NgModule({
    declarations: [
        AppComponent
    ],
    imports: [
        BrowserModule,
        HttpLoggerModule.forRoot({ excludeDomains: ['api.github.com']})
    ],
    bootstrap: [AppComponent]
});

Then just open browser console and run some requests.

preview

Inside console group you still have access to raw response/error.

preview-2

After print info error will be passed up to stream as ErrorObservable.

Package Sidebar

Install

npm i ngx-http-logger

Weekly Downloads

0

Version

1.1.2

License

MIT

Unpacked Size

96.4 kB

Total Files

30

Last publish

Collaborators

  • komock