UNPKG

@triviality/logger

Version:

Typescript loggers with an interface that support composition

8 lines (6 loc) 174 B
import { AbstractLogLevelLogger } from './AbstractLogLevelLogger'; export class NullLogger extends AbstractLogLevelLogger { public log(): void { // Log nothing. } }