Skip to content

Commit

Permalink
feat(logger): fixed inheritDoc annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
serg-temchenko committed Sep 30, 2021
1 parent 01ff5fd commit f3e5283
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/logger/defaultLogger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,35 +12,35 @@ export class DefaultLogger implements Logger {
}

/**
* {@inheritDoc}
* @inheritDoc
*/
public debug(message: string, args: unknown[] = []): void {
this.log(Level.DEBUG, message, args)
}

/**
* {@inheritDoc}
* @inheritDoc
*/
public info(message: string, args: unknown[] = []): void {
this.log(Level.INFO, message, args)
}

/**
* {@inheritDoc}
* @inheritDoc
*/
public warn(message: string, args: unknown[] = []): void {
this.log(Level.WARNING, message, args)
}

/**
* {@inheritDoc}
* @inheritDoc
*/
public error(message: string, args: unknown[] = []): void {
this.log(Level.ERROR, message, args)
}

/**
* {@inheritDoc}
* @inheritDoc
*/
public fatal(message: string, args: unknown[] = []): void {
this.log(Level.FATAL, message, args)
Expand Down

0 comments on commit f3e5283

Please sign in to comment.