
Product
Rust Support Now in Beta
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
@jfkz/ngx-toolkit-logger
Advanced tools
Angular LoggerService (with default
ConsoleLoggerService
implementation)
Install the npm package.
# To get the latest stable version and update package.json file:
npm install @ngx-toolkit/logger --save
# or
yarn add @ngx-toolkit/logger
Import LoggerModule
in the root Module of your application with forRoot(level?: Level)
to choose your log level. If you don't specify a level, you haven't any log.
import { NgModule, isDevMode } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { LoggerModule, Level } from '@ngx-toolkit/logger';
import { AppComponent } from './app.component';
const LOG_LEVEL: Level = isDevMode() ? Level.INFO : Level.ERROR;
@NgModule({
imports: [ BrowserModule, LoggerModule.forRoot(LOG_LEVEL) ],
declarations: [ AppComponent ],
bootstrap: [ AppComponent ]
})
export class AppModule { }
import { Component, OnInit } from '@angular/core';
import { LoggerService } from '@ngx-toolkit/logger';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent implements OnInit {
constructor(private logger: LoggerService) {}
ngOnInit() {
this.logger.info('OnInit my AppCommponent');
}
}
The LoggerSerivce
API:
/**
* Outputs an error message.
*/
error(message?: any, ...optionalParams: any[]) {}
/**
* Outputs a warning message.
*/
warn(message?: any, ...optionalParams: any[]) {}
/**
* Outputs an informational message.
*/
info(message?: any, ...optionalParams: any[]) {}
/**
* Outputs a debug message.
*/
debug(message?: any, ...optionalParams: any[]) {}
/**
* Outputs a message.
*/
log(message?: any, ...optionalParams: any[]) {}
You can create you own implementation. Our sample with the winston API:
import { Inject, Injectable } from '@angular/core';
import { LoggerService, LOGGER_LEVEL, Level } from '@ngx-toolkit/logger';
import winston from 'winston';
@Injectable()
export class WinstonLoggerService extends LoggerService {
private logger: any;
constructor(@Inject(LOGGER_LEVEL) level: Level) {
super();
this.logger = winston.createLogger({
transports: [
new winston.transports.File({
filename: 'combined.log',
level: 'info'
})
]
});
}
info(message?: any, ...optionalParams: any[]) {
this.logger.info(message, optionalParams);
}
...
}
To register WinstonLoggerService in the Angular application, provide the LoggerModule
with forRoot(level?: Level, provider?: Type<LoggerService>,)
as:
import { NgModule, isDevMode } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { LoggerModule, Level } from '@ngx-toolkit/logger';
import { WinstonLoggerService } from './winston-logger.service';
import { AppComponent } from './app.component';
const LOG_LEVEL: Level = isDevMode() ? Level.INFO : Level.ERROR;
@NgModule({
imports: [ BrowserModule, LoggerModule.forRoot(LOG_LEVEL, WinstonLoggerService) ],
declarations: [ AppComponent ],
bootstrap: [ AppComponent ]
})
export class AppModule { }
import { Component, OnInit } from '@angular/core';
import { logger } from '@ngx-toolkit/logger';
import { timer } from 'rxjs';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent implements OnInit {
constructor() {}
ngOnInit() {
timer(1000, 2000).pipe(
logger('timer')
).subscribe();
}
}
import { Component, OnInit } from '@angular/core';
import { Debug } from '@ngx-toolkit/logger';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent implements OnInit {
constructor() {}
@Debug()
action(param: string) {
return "result";
}
}
© 2018 Dewizz
FAQs
Angular logger abstraction
We found that @jfkz/ngx-toolkit-logger demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.