Is there any framework for logging actions in Angular2. I would like to have debug, error, info logs. Previously I used NLog framework but it doesn't support Angular 2. Thanks for any help.
There's something here that may help scratch that itch
app-module.ts
@NgModule({
providers: [
ErrorLogService
]
})
Write your own ErrorLogService
Or this