Options
All
  • Public
  • Public/Protected
  • All
Menu

Base class that implements all additional BaseLogger methods, leaving only the implementation of SimpleLogger.

Hierarchy

Implements

Index

Constructors

Methods

  • debug(message: string): Logger
  • error(message: string): Logger
  • log(level: "error" | "warn" | "info" | "verbose" | "debug" | "silly", message: string): Logger
  • Log the given message at the given level. If the internal level is higher than the given level, the message may be voided.

    Parameters

    • level: "error" | "warn" | "info" | "verbose" | "debug" | "silly"
    • message: string

    Returns Logger

  • silly(message: string): Logger
  • verbose(message: string): Logger