Skip to content

Latest commit

 

History

History
38 lines (27 loc) · 835 Bytes

README.md

File metadata and controls

38 lines (27 loc) · 835 Bytes

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.