npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

rich-logger-decorator

v4.0.0

Published

Rich Logger Typescript Decorator for Easy Coding & Debugging Edit

Downloads

29

Readme

rich-logger-decorator

Rich Logger Typescript Decorator for Easy Coding & Debugging

Read the medium article about the logger usage.

Installation

npm i rich-logger-decorator

Basic usage

In this example we will use only the ClassLogger decorator in order to log all the class methods.

import { ClassLogger } from 'rich-logger-decorator';

@ClassLogger()
class StudentComponent {

  name: string;
  debt: number;
  avgGrade: number;
  examsNumber = 0;

  constructor(name: string, debt: number, avgGrade: number, examsNumber: number) {
    console.log(`Hi ${name}`);

    this.name = name;
    this.debt = debt;
    this.avgGrade = avgGrade;
    this.examsNumber = examsNumber;
  }

  addExam(grade: number): void {
    if (grade < 0 || grade > 100) {
       console.log('invalid grade');
       return;
    }

    this.avgGrade = (this.avgGrade * this.examsNumber + grade) / ++this.examsNumber;
  }

  fine(): void {
    this.debt *= 1.1;
  }

  grantScholarship(dollars: number): void {
    this.debt += dollars;
  }
}

const stud = new StudentComponent('John Doe', 1000, 98, 3);
stud.addExam(200);
stud.addExam(90);
stud.grantScholarship(1000);
stud.fine();

The console looks like:

console output

Mixed decorators and options

In this example we use the ClassLogger and DiableMethodLogger decorators with the default options and the MethodLogger decorator with custom options.

import { ClassLogger, Logger, DisableMethodLogger } from 'rich-logger-decorator';

@ClassLogger()
class StudentComponent {

  name: string;
  debt: number;
  avgGrade: number;
  examsNumber = 0;

  constructor(name: string, debt: number, avgGrade: number, examsNumber: number) {
    console.log(`Hi ${name}`);

    this.name = name;
    this.debt = debt;
    this.avgGrade = avgGrade;
    this.examsNumber = examsNumber;
  }

  addExam(grade: number): void {
    if (grade < 0 || grade > 100) {
       console.log('invalid grade');
       return;
    }

    this.avgGrade = (this.avgGrade * this.examsNumber + grade) / ++this.examsNumber;
  }

  @Logger({
    withClassProperties: ['debt'],
    withTime: true,
    logFunction: console.error
  })
  fine(): void {
    this.debt *= 1.1;
  }

  @DisableMethodLogger()
  grantScholarship(dollars: number): void {
    this.debt += dollars;
  }
}

const stud = new StudentComponent('John Doe', 1000, 98, 3);
stud.addExam(200);
stud.addExam(90);
stud.grantScholarship(1000);
stud.fine();

The console looks like:

console output

@Logger decorator

The Logger decorator needs to be on top of the function you want to log. The log messages will be printed before the function will start and after the function will end. This decorator can get options that defines the behavior of the flow and, eventually, affecting the log messages. When the options do not supply, the defaultFunctionLoggerOptions object is used by the decorator. The options are defined by the FunctionLoggerOptions interface

FunctionLoggerOptions

This is the interface of the Logger decorator options argument.

Function logger options interface

As you can see the interface contains some properties.

  • withArgs — this property can be boolean or array of strings. When the value is false, the arguments and their values will not be a part of the log message. When the value is true, all the argument and their values will be a part of the log message. When the value is array of strings, the arguments, that their names contained in the array, will be a part of the log message.
  • withTime — when the value is true, the time will be a part of the log message.
  • withClassProperties — when the value is true and the function is a method of a class, the class properties and their values will be part of the log message. This option can be also an array of the properties names of the class (will behave like ‘withArgs’, just for class properties).
  • logFunction —a function that replace the traditional console.log. This function will be called with the log message in the start and the end of the original function.
  • formatAndLogFunction — a function that gets the resulted string of the decorator flow and logs the customized message. This function gets the time, class name (if exist), function name, start/end log, strings array of the arguments and their values and strings array of the class properties and their values.

All of the options are optional.

DefaultFunctionLoggerOptions

defaultFunctionLoggerOptions is an object with default values for LoggerOptions. The default values are:

  • withArgs — true
  • withTime — true
  • withClassProperties — false
  • logFunction — the console.log function
  • formatAndLogFunction —no default value. When the value doesn’t exist, the default behavior happened.

@ClassLogger decorator

The ClassLogger using by classes. When you put the decorator on top of the class definition, all the methods in the class are logged automatically.   As the Logger decorator, the decorator can get options that defines the behavior of the flow and eventually affects the log messages. When the options do not supplied, the defaultClassLoggerOptions used by the decorator. The options are defined by the ClassLoggerOptions interface.

ClassLoggerOptions

This is the interface of the ClassLogger decorator options argument.

Class logger options interface

As you can see the interface contains some properties.

  • methodOptions — the options for the methods of the decorated class. Same as the options of the Logger function decorator. 
  • loggedMethodsNames — array of method’s names that being logged. When the option is undefined, all the class methods are logged.

All of the options are optional.

DefaultClassLoggerOptions

defaultClassLoggerOptions is an object with default values for ClassLoggerOptions. The default values are:

  • methodOptions — same as defaultLoggerOptions of the function decorator.
  • loggedMethodsNames — undefined (so all the class methods will be logged)

Additional decorators

For more convienieng usage here are two more decorators.

@DisableLogger decorator

When you are using the ClassLogger decorator (without the methods array option), all the class methods will be logged. In order to disable specific method for being logged, you can put the DisableLogger decorator before the method definition. This is clearer way to prevent the logger behavior than the method array option, because of the second one restricts us to write the method name in the array.

@LoggerWithoutArgs decorator

This decorator is a syntactic sugar of the Logger decorator with withArgs option of false. Namely, the argument and theirs values will not be part of the log message. If another options will be provided, the decorator will use them, except for the withArgs option.